Skip to content

Commit

Permalink
Fix zenoh-tranpsport crate self dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHecart committed Sep 27, 2023
1 parent 7b07ca3 commit d6da961
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ zenoh-collections = { version = "0.10.0-rc", path = "commons/zenoh-collections",
zenoh-macros = { version = "0.10.0-rc", path = "commons/zenoh-macros" }
zenoh-plugin-trait = { version = "0.10.0-rc", path = "plugins/zenoh-plugin-trait", default-features = false }
zenoh_backend_traits = { version = "0.10.0-rc", path = "plugins/zenoh-backend-traits" }
zenoh-transport = { version = "0.10.0-rc", path = "io/zenoh-transport" }
zenoh-transport = { version = "0.10.0-rc", path = "io/zenoh-transport", default-features = false }
zenoh-link-tls = { version = "0.10.0-rc", path = "io/zenoh-links/zenoh-link-tls" }
zenoh-link-tcp = { version = "0.10.0-rc", path = "io/zenoh-links/zenoh-link-tcp" }
zenoh-link-unixsock_stream = { version = "0.10.0-rc", path = "io/zenoh-links/zenoh-link-unixsock_stream" }
Expand Down
3 changes: 1 addition & 2 deletions io/zenoh-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ transport_unixpipe = ["zenoh-link/transport_unixpipe"]
stats = ["zenoh-protocol/stats"]
test = []
unstable = []
default = ["test", "transport_multilink"]

[dependencies]
async-executor = { workspace = true }
Expand Down Expand Up @@ -78,5 +79,3 @@ zenoh-util = { workspace = true }
env_logger = { workspace = true }
panic-message = { workspace = true }
zenoh-protocol = { workspace = true, features = ["test"] }
zenoh-transport = { workspace = true, features = ["test", "transport_multilink"] }

0 comments on commit d6da961

Please sign in to comment.