Skip to content

Commit

Permalink
fix: fix zenoh-ext dependencies (#1495)
Browse files Browse the repository at this point in the history
* fix: fix zenoh-ext dependencies

* fix: put back zenoh-config as dev-dependency
  • Loading branch information
wyfo authored Oct 1, 2024
1 parent febd589 commit 89efcce
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

3 changes: 1 addition & 2 deletions zenoh-ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,10 @@ futures = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true, features = ["default"] }
leb128 = { workspace = true }
zenoh = { workspace = true, features = ["unstable", "internal"], default-features = false }
zenoh = { workspace = true, default-features = false }
zenoh-macros = { workspace = true }

[dev-dependencies]
zenoh = { workspace = true, features = ["unstable"], default-features = true }
zenoh-config = { workspace = true }
rand = { workspace = true }

Expand Down
9 changes: 6 additions & 3 deletions zenoh-ext/tests/liveliness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@
// Contributors:
// ZettaScale Zenoh Team, <[email protected]>
//

use zenoh::{sample::SampleKind, Wait};
use zenoh_config::{EndPoint, WhatAmI};
#![cfg(feature = "unstable")]
use zenoh::{
config::{EndPoint, WhatAmI},
sample::SampleKind,
Wait,
};

#[tokio::test(flavor = "multi_thread", worker_threads = 4)]
async fn test_liveliness_querying_subscriber_clique() {
Expand Down

0 comments on commit 89efcce

Please sign in to comment.