mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
clippy linting at the workspace level for all crates Configure all workspaces to use lints from the top-level Cargo.toml file Add example lints that the project could configure to improve security and reliability. Configure lints to warn level. Using deny level makes other binaries fail to compile if even one of them has a failure. No lints are added in this commit. Future changes can enable and fix lints
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "gg"
|
|
version = "0.4.1"
|
|
description = """\
|
|
Genesis Generator, a command-line utility to generate,\
|
|
display and verify a bs58 encoded Darkfi genesis block\
|
|
"""
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
repository = "https://github.com/darkrenaissance/darkfi"
|
|
license = "AGPL-3.0-only"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
# Darkfi
|
|
darkfi = {path = "../../../", features = ["validator"]}
|
|
darkfi_money_contract = {path = "../../../src/contract/money", features = ["no-entrypoint", "client"]}
|
|
darkfi-contract-test-harness = {path = "../../../src/contract/test-harness"}
|
|
darkfi-sdk = {path = "../../../src/sdk"}
|
|
darkfi-serial = {path = "../../../src/serial"}
|
|
|
|
# Misc
|
|
async-std = {version = "1.12.0", features = ["attributes"]}
|
|
bs58 = "0.5.1"
|
|
clap = {version = "4.4.11", features = ["derive"]}
|
|
sled = "0.34.7"
|
|
|
|
[patch.crates-io]
|
|
halo2_proofs = {git="https://github.com/parazyd/halo2", branch="v4"}
|
|
halo2_gadgets = {git="https://github.com/parazyd/halo2", branch="v4"}
|
|
blake2b_simd = {git="https://github.com/parazyd/blake2_simd", branch="impl-common"}
|
|
|
|
[lints]
|
|
workspace = true
|
|
|