Skip to content

Commit dcd4f10

Browse files
[ci] Fix Publish (#3054)
1 parent 6c0716b commit dcd4f10

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ commonware-macros-impl.workspace = true
1818
tokio = { workspace = true, features = ["macros"], optional = true }
1919

2020
[dev-dependencies]
21-
commonware-utils = { workspace = true, features = ["std"] }
2221
futures.workspace = true
2322
futures-timer.workspace = true
23+
tokio = { workspace = true, features = ["sync"] }
2424
tracing.workspace = true
2525
tracing-subscriber.workspace = true
2626

macros/tests/select.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#[cfg(test)]
22
mod tests {
33
use commonware_macros::{select, select_loop};
4-
use commonware_utils::channel::mpsc;
54
use futures::executor::block_on;
65
use std::future::Future;
6+
use tokio::sync::mpsc;
77

88
#[test]
99
fn test_select_macro() {

0 commit comments

Comments
 (0)