Enable a transitive feature that speeds up compilation (#4796)
This commit is contained in:
parent
f534243851
commit
42f6c27c98
|
|
@ -5455,6 +5455,7 @@ dependencies = [
|
||||||
"pin-project 1.0.11",
|
"pin-project 1.0.11",
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
"rayon",
|
"rayon",
|
||||||
|
"tinyvec",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-test",
|
"tokio-test",
|
||||||
"tokio-util 0.7.3",
|
"tokio-util 0.7.3",
|
||||||
|
|
@ -6345,6 +6346,7 @@ dependencies = [
|
||||||
"static_assertions",
|
"static_assertions",
|
||||||
"subtle",
|
"subtle",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
|
"tinyvec",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tracing",
|
"tracing",
|
||||||
"uint",
|
"uint",
|
||||||
|
|
@ -6388,6 +6390,7 @@ dependencies = [
|
||||||
"serde",
|
"serde",
|
||||||
"spandoc",
|
"spandoc",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
|
"tinyvec",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower",
|
"tower",
|
||||||
"tower-batch",
|
"tower-batch",
|
||||||
|
|
@ -6519,6 +6522,7 @@ dependencies = [
|
||||||
"spandoc",
|
"spandoc",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
|
"tinyvec",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower",
|
"tower",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
|
@ -6544,6 +6548,7 @@ dependencies = [
|
||||||
"spandoc",
|
"spandoc",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
|
"tinyvec",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower",
|
"tower",
|
||||||
"tracing",
|
"tracing",
|
||||||
|
|
@ -6559,6 +6564,7 @@ dependencies = [
|
||||||
"hex",
|
"hex",
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"structopt",
|
"structopt",
|
||||||
|
"tinyvec",
|
||||||
"tracing-error",
|
"tracing-error",
|
||||||
"tracing-subscriber 0.3.11",
|
"tracing-subscriber 0.3.11",
|
||||||
"zebra-chain",
|
"zebra-chain",
|
||||||
|
|
@ -6605,6 +6611,7 @@ dependencies = [
|
||||||
"serde_json",
|
"serde_json",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
|
"tinyvec",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-stream",
|
"tokio-stream",
|
||||||
"toml",
|
"toml",
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,10 @@ tracing-futures = "0.2.5"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
color-eyre = "0.6.1"
|
color-eyre = "0.6.1"
|
||||||
|
# This is a transitive dependency via color-eyre.
|
||||||
|
# Enable a feature that makes tinyvec compile much faster.
|
||||||
|
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
|
||||||
|
|
||||||
ed25519-zebra = "3.0.0"
|
ed25519-zebra = "3.0.0"
|
||||||
rand = { version = "0.8.5", package = "rand" }
|
rand = { version = "0.8.5", package = "rand" }
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -85,12 +85,14 @@ tokio = { version = "1.20.1", features = ["tracing"], optional = true }
|
||||||
zebra-test = { path = "../zebra-test/", optional = true }
|
zebra-test = { path = "../zebra-test/", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
||||||
# Benchmarks
|
# Benchmarks
|
||||||
criterion = { version = "0.3.5", features = ["html_reports"] }
|
criterion = { version = "0.3.5", features = ["html_reports"] }
|
||||||
|
|
||||||
# Error Handling & Formatting
|
# Error Handling & Formatting
|
||||||
color-eyre = "0.6.1"
|
color-eyre = "0.6.1"
|
||||||
|
# This is a transitive dependency via color-eyre.
|
||||||
|
# Enable a feature that makes tinyvec compile much faster.
|
||||||
|
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
|
||||||
spandoc = "0.2.2"
|
spandoc = "0.2.2"
|
||||||
tracing = "0.1.31"
|
tracing = "0.1.31"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,10 @@ proptest-derive = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
color-eyre = "0.6.1"
|
color-eyre = "0.6.1"
|
||||||
|
# This is a transitive dependency via color-eyre.
|
||||||
|
# Enable a feature that makes tinyvec compile much faster.
|
||||||
|
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
|
||||||
|
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
proptest = "0.10.1"
|
proptest = "0.10.1"
|
||||||
proptest-derive = "0.3.0"
|
proptest-derive = "0.3.0"
|
||||||
|
|
|
||||||
|
|
@ -39,6 +39,10 @@ proptest-derive = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
color-eyre = "0.6.1"
|
color-eyre = "0.6.1"
|
||||||
|
# This is a transitive dependency via color-eyre.
|
||||||
|
# Enable a feature that makes tinyvec compile much faster.
|
||||||
|
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
|
||||||
|
|
||||||
once_cell = "1.13.0"
|
once_cell = "1.13.0"
|
||||||
spandoc = "0.2.2"
|
spandoc = "0.2.2"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -22,6 +22,10 @@ tower = { version = "0.4.13", features = ["util"] }
|
||||||
futures = "0.3.21"
|
futures = "0.3.21"
|
||||||
|
|
||||||
color-eyre = "0.6.1"
|
color-eyre = "0.6.1"
|
||||||
|
# This is a transitive dependency via color-eyre.
|
||||||
|
# Enable a feature that makes tinyvec compile much faster.
|
||||||
|
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
|
||||||
|
|
||||||
owo-colors = "3.4.0"
|
owo-colors = "3.4.0"
|
||||||
spandoc = "0.2.2"
|
spandoc = "0.2.2"
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,12 @@ edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
structopt = "0.3.26"
|
|
||||||
color-eyre = "0.6.1"
|
color-eyre = "0.6.1"
|
||||||
|
# This is a transitive dependency via color-eyre.
|
||||||
|
# Enable a feature that makes tinyvec compile much faster.
|
||||||
|
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
|
||||||
|
|
||||||
|
structopt = "0.3.26"
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
serde_json = "1.0.83"
|
serde_json = "1.0.83"
|
||||||
tracing-error = "0.2.0"
|
tracing-error = "0.2.0"
|
||||||
|
|
|
||||||
|
|
@ -92,6 +92,10 @@ tower = { version = "0.4.13", features = ["hedge", "limit"] }
|
||||||
pin-project = "1.0.10"
|
pin-project = "1.0.10"
|
||||||
|
|
||||||
color-eyre = { version = "0.6.1", default_features = false, features = ["issue-url"] }
|
color-eyre = { version = "0.6.1", default_features = false, features = ["issue-url"] }
|
||||||
|
# This is a transitive dependency via color-eyre.
|
||||||
|
# Enable a feature that makes tinyvec compile much faster.
|
||||||
|
tinyvec = { version = "1.5.1", features = ["rustc_1_55"] }
|
||||||
|
|
||||||
thiserror = "1.0.31"
|
thiserror = "1.0.31"
|
||||||
|
|
||||||
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue