[package]
edition = "2021"
name = "soil-cli"
version = "0.2.0"
authors = ["Soil contributors <legal@bitarray.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Soil CLI interface"
homepage = "https://soil.rs"
readme = false
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository = "https://github.com/soil-rs/soil"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[features]
default = ["rocksdb"]
rocksdb = ["soil-client/rocksdb"]
[lib]
name = "soil_cli"
path = "src/lib.rs"
[dependencies.array-bytes]
version = "6.2.2"
default-features = true
[dependencies.bip39]
version = "2.2.0"
features = ["rand"]
default-features = true
[dependencies.chrono]
version = "0.4.31"
[dependencies.clap]
version = "4.5.13"
features = [
"derive",
"string",
"wrap_help",
]
[dependencies.codec]
version = "3.7.5"
default-features = true
package = "parity-scale-codec"
[dependencies.fdlimit]
version = "0.3.0"
[dependencies.futures]
version = "0.3.31"
[dependencies.itertools]
version = "0.11"
[dependencies.libp2p-identity]
version = "0.2.9"
features = [
"ed25519",
"peerid",
]
[dependencies.log]
version = "0.4.22"
default-features = true
[dependencies.names]
version = "0.14.0"
default-features = false
[dependencies.rand]
version = "0.8.5"
default-features = true
[dependencies.regex]
version = "1.10.2"
[dependencies.rpassword]
version = "7.0.0"
[dependencies.serde]
version = "1.0.214"
default-features = true
[dependencies.serde_json]
version = "1.0.132"
default-features = true
[dependencies.soil-client]
version = "0.2.0"
default-features = true
[dependencies.soil-network]
version = "0.2.0"
default-features = true
[dependencies.soil-service]
version = "0.2.0"
default-features = false
[dependencies.soil-telemetry]
version = "0.2.0"
default-features = true
[dependencies.soil-txpool]
version = "0.2.0"
default-features = true
[dependencies.subsoil]
version = "0.2.0"
default-features = false
[dependencies.thiserror]
version = "1.0.64"
[dependencies.tokio]
version = "1.45.0"
features = [
"parking_lot",
"rt-multi-thread",
"signal",
]
default-features = true
[dev-dependencies.futures-timer]
version = "3.0.2"
[dev-dependencies.tempfile]
version = "3.8.1"
[lints.clippy.all]
level = "allow"
priority = 0
[lints.clippy.bind_instead_of_map]
level = "allow"
priority = 2
[lints.clippy.borrowed-box]
level = "allow"
priority = 2
[lints.clippy.complexity]
level = "warn"
priority = 1
[lints.clippy.correctness]
level = "warn"
priority = 1
[lints.clippy.default_constructed_unit_structs]
level = "allow"
priority = 2
[lints.clippy.derivable_impls]
level = "allow"
priority = 2
[lints.clippy.eq_op]
level = "allow"
priority = 2
[lints.clippy.erasing_op]
level = "allow"
priority = 2
[lints.clippy.extra-unused-type-parameters]
level = "allow"
priority = 2
[lints.clippy.identity-op]
level = "allow"
priority = 2
[lints.clippy.if-same-then-else]
level = "allow"
priority = 2
[lints.clippy.needless-lifetimes]
level = "allow"
priority = 2
[lints.clippy.needless_option_as_deref]
level = "allow"
priority = 2
[lints.clippy.nonminimal-bool]
level = "allow"
priority = 2
[lints.clippy.option-map-unit-fn]
level = "allow"
priority = 2
[lints.clippy.stable_sort_primitive]
level = "allow"
priority = 2
[lints.clippy.too-many-arguments]
level = "allow"
priority = 2
[lints.clippy.type_complexity]
level = "allow"
priority = 2
[lints.clippy.unit_arg]
level = "allow"
priority = 2
[lints.clippy.unnecessary_cast]
level = "allow"
priority = 2
[lints.clippy.useless_conversion]
level = "allow"
priority = 2
[lints.clippy.while_immutable_condition]
level = "allow"
priority = 2
[lints.clippy.zero-prefixed-literal]
level = "allow"
priority = 2
[lints.rust.suspicious_double_ref_op]
level = "allow"
priority = 2
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
'cfg(build_opt_level, values("3"))',
'cfg(build_profile, values("debug", "release"))',
"cfg(enable_alloc_error_handler)",
"cfg(fuzzing)",
"cfg(ignore_flaky_test)",
"cfg(substrate_runtime)",
]