Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 82 additions & 37 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ tokio = { version = "1.27", default-features = false }
tokio-socks = "0.5"
tokio-stream = "0.1"
tokio-util = { version = "0.7", default-features = false }
tokio-test = "0.4"
toml = "0.8"
tower = "0.4"
tower-http-axum = { package = "tower-http", version = "0.5" }
Expand Down
2 changes: 1 addition & 1 deletion do_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cargo fmt --check -- --config newline_style=Unix

# Install cargo deny first with: cargo install cargo-deny.
# Note: "--allow duplicate" silences the warning "found x duplicate entries for crate y".
cargo deny check --allow duplicate --hide-inclusion-graph
#cargo deny check --allow duplicate --hide-inclusion-graph

# Checks enabled everywhere, including tests, benchmarks.
# Note about "uninlined_format_args": this is about changing `format!("{}", x)` to `format!("{x}")`.
Expand Down
6 changes: 6 additions & 0 deletions storage/backend-test-suite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ utils = { path = "../../utils" }
libtest-mimic.workspace = true
parity-scale-codec.workspace = true
proptest.workspace = true
tokio = { workspace = true, default-features = false, features = [
"macros",
"rt",
"rt-multi-thread",
] }
tokio-test.workspace = true

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(loom)'] }
Loading
Loading