Skip to content

Commit

Permalink
Merge of #4796
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] authored Aug 3, 2022
2 parents f534243 + 9ce6608 commit 5b99631
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions tower-batch/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ tracing-futures = "0.2.5"

[dev-dependencies]
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"
rand = { version = "0.8.5", package = "rand" }

Expand Down
4 changes: 3 additions & 1 deletion zebra-chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,14 @@ tokio = { version = "1.20.1", features = ["tracing"], optional = true }
zebra-test = { path = "../zebra-test/", optional = true }

[dev-dependencies]

# Benchmarks
criterion = { version = "0.3.5", features = ["html_reports"] }

# Error Handling & Formatting
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"
tracing = "0.1.31"

Expand Down
4 changes: 4 additions & 0 deletions zebra-consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ proptest-derive = { version = "0.3.0", optional = true }

[dev-dependencies]
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"
proptest = "0.10.1"
proptest-derive = "0.3.0"
Expand Down
4 changes: 4 additions & 0 deletions zebra-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ proptest-derive = { version = "0.3.0", optional = true }

[dev-dependencies]
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"
spandoc = "0.2.2"

Expand Down
4 changes: 4 additions & 0 deletions zebra-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ tower = { version = "0.4.13", features = ["util"] }
futures = "0.3.21"

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"
spandoc = "0.2.2"
thiserror = "1.0.31"
Expand Down
6 changes: 5 additions & 1 deletion zebra-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@ edition = "2021"
publish = false

[dependencies]
structopt = "0.3.26"
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"
serde_json = "1.0.83"
tracing-error = "0.2.0"
Expand Down
4 changes: 4 additions & 0 deletions zebrad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ tower = { version = "0.4.13", features = ["hedge", "limit"] }
pin-project = "1.0.10"

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"

tracing-subscriber = { version = "0.3.11", features = ["env-filter"] }
Expand Down

0 comments on commit 5b99631

Please sign in to comment.