Remove unused dependencies found using cargo-udeps
This commit is contained in:
parent
531a33f03b
commit
5b687f878a
|
|
@ -2809,18 +2809,6 @@ version = "0.3.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
|
checksum = "e987b6bf443f4b5b3b6f38704195592cca41c5bb7aedd3c3693c7081f8289860"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "tower-util"
|
|
||||||
version = "0.3.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "d1093c19826d33807c72511e68f73b4a0469a3f22c2bd5f7d5212178b4b89674"
|
|
||||||
dependencies = [
|
|
||||||
"futures-core",
|
|
||||||
"futures-util",
|
|
||||||
"pin-project 0.4.27",
|
|
||||||
"tower-service",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tracing"
|
name = "tracing"
|
||||||
version = "0.1.22"
|
version = "0.1.22"
|
||||||
|
|
@ -3215,7 +3203,6 @@ dependencies = [
|
||||||
"tower",
|
"tower",
|
||||||
"tower-batch",
|
"tower-batch",
|
||||||
"tower-fallback",
|
"tower-fallback",
|
||||||
"tower-util",
|
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-error",
|
"tracing-error",
|
||||||
"tracing-futures",
|
"tracing-futures",
|
||||||
|
|
@ -3296,7 +3283,6 @@ dependencies = [
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower",
|
"tower",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-error",
|
|
||||||
"zebra-chain",
|
"zebra-chain",
|
||||||
"zebra-test",
|
"zebra-test",
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,6 @@ edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
color-eyre = "0.5.10"
|
|
||||||
displaydoc = "0.1.7"
|
displaydoc = "0.1.7"
|
||||||
jubjub = "0.5.1"
|
jubjub = "0.5.1"
|
||||||
once_cell = "1.5"
|
once_cell = "1.5"
|
||||||
|
|
@ -21,7 +20,6 @@ metrics = "0.12"
|
||||||
thiserror = "1.0.22"
|
thiserror = "1.0.22"
|
||||||
tokio = { version = "0.3.4", features = ["time", "sync", "stream", "tracing"] }
|
tokio = { version = "0.3.4", features = ["time", "sync", "stream", "tracing"] }
|
||||||
tower = { version = "0.4", features = ["timeout", "util", "buffer"] }
|
tower = { version = "0.4", features = ["timeout", "util", "buffer"] }
|
||||||
tower-util = "0.3"
|
|
||||||
tracing = "0.1.22"
|
tracing = "0.1.22"
|
||||||
tracing-futures = "0.2.4"
|
tracing-futures = "0.2.4"
|
||||||
|
|
||||||
|
|
@ -32,6 +30,7 @@ zebra-state = { path = "../zebra-state" }
|
||||||
zebra-script = { path = "../zebra-script" }
|
zebra-script = { path = "../zebra-script" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
color-eyre = "0.5.10"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
spandoc = "0.2"
|
spandoc = "0.2"
|
||||||
tokio = { version = "0.3.4", features = ["full"] }
|
tokio = { version = "0.3.4", features = ["full"] }
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,6 @@ edition = "2018"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
zebra-chain = { path = "../zebra-chain" }
|
zebra-chain = { path = "../zebra-chain" }
|
||||||
|
|
||||||
color-eyre = "0.5.10"
|
|
||||||
dirs = "3.0.1"
|
dirs = "3.0.1"
|
||||||
hex = "0.4.2"
|
hex = "0.4.2"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
|
|
@ -20,7 +19,6 @@ futures = "0.3.7"
|
||||||
metrics = "0.12"
|
metrics = "0.12"
|
||||||
tower = { version = "0.4", features = ["buffer", "util"] }
|
tower = { version = "0.4", features = ["buffer", "util"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
tracing-error = "0.1.2"
|
|
||||||
thiserror = "1.0.22"
|
thiserror = "1.0.22"
|
||||||
tokio = { version = "0.3.4", features = ["sync"] }
|
tokio = { version = "0.3.4", features = ["sync"] }
|
||||||
displaydoc = "0.1.7"
|
displaydoc = "0.1.7"
|
||||||
|
|
@ -34,6 +32,7 @@ rlimit = "0.5.3"
|
||||||
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
|
zebra-chain = { path = "../zebra-chain", features = ["proptest-impl"] }
|
||||||
zebra-test = { path = "../zebra-test/" }
|
zebra-test = { path = "../zebra-test/" }
|
||||||
|
|
||||||
|
color-eyre = "0.5.10"
|
||||||
once_cell = "1.5"
|
once_cell = "1.5"
|
||||||
spandoc = "0.2"
|
spandoc = "0.2"
|
||||||
tempdir = "0.3.7"
|
tempdir = "0.3.7"
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ thiserror = "1.0.22"
|
||||||
pretty_assertions = "0.6.1"
|
pretty_assertions = "0.6.1"
|
||||||
owo-colors = "1.2.0"
|
owo-colors = "1.2.0"
|
||||||
proptest = "0.10.1"
|
proptest = "0.10.1"
|
||||||
tempdir = "0.3.7"
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
tempdir = "0.3.7"
|
||||||
tokio = { version = "0.3.4", features = ["full"] }
|
tokio = { version = "0.3.4", features = ["full"] }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue