Skip to content
Open
3 changes: 2 additions & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion rs/consensus/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ DEV_DEPENDENCIES = [
"@crate_index//:slog-term",
"@crate_index//:strum",
"@crate_index//:tempfile",
"@crate_index//:tokio",
]

NONMALICIOUS_DEPENDENCIES = [
Expand Down Expand Up @@ -198,5 +197,6 @@ rust_ic_bench(
"//rs/types/types",
"@crate_index//:criterion",
"@crate_index//:tempfile",
"@crate_index//:tokio",
],
)
1 change: 1 addition & 0 deletions rs/consensus/benches/validate_payload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ where
&StateManagerConfig::new(tmpdir.path().to_path_buf()),
None,
ic_types::malicious_flags::MaliciousFlags::default(),
tokio::sync::watch::channel(ic_types::Height::from(0)).0,
);
setup_ingress_state(now, &mut state_manager);
let state_manager = Arc::new(state_manager);
Expand Down
1 change: 0 additions & 1 deletion rs/consensus/certification/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ DEPENDENCIES = [
"//rs/types/types",
"@crate_index//:prometheus",
"@crate_index//:slog",
"@crate_index//:tokio",
]

DEV_DEPENDENCIES = [
Expand Down
1 change: 0 additions & 1 deletion rs/consensus/certification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ ic-replicated-state = { path = "../../replicated_state" }
ic-types = { path = "../../types/types" }
prometheus = { workspace = true }
slog = { workspace = true }
tokio = { workspace = true }

[dev-dependencies]
assert_matches = { workspace = true }
Expand Down
Loading
Loading