Skip to content

Commit 6cfd89a

Browse files
committed
fix: workspace dependency
Signed-off-by: gabrik <[email protected]>
1 parent 520ca4c commit 6cfd89a

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

Cargo.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
# ZettaScale Zenoh Team, <[email protected]>
1313
#
1414
[workspace]
15-
resolver = "2"
1615
members = ["zenoh-bridge-mqtt", "zenoh-plugin-mqtt"]
16+
resolver = "2"
1717

1818
[workspace.package]
19-
version = "0.11.0-dev"
2019
authors = ["Julien Enoch <[email protected]>"]
20+
categories = ["network-programming"]
2121
edition = "2021"
22-
repository = "https://github.com/eclipse-zenoh/zenoh-plugin-mqtt"
2322
homepage = "http://zenoh.io"
2423
license = "EPL-2.0 OR Apache-2.0"
25-
categories = ["network-programming"]
24+
repository = "https://github.com/eclipse-zenoh/zenoh-plugin-mqtt"
25+
version = "0.11.0-dev"
2626

2727
[workspace.dependencies]
2828
async-channel = "2.2.0"
@@ -43,25 +43,27 @@ regex = "1.7.1"
4343
rustc_version = "0.4"
4444
rustls = "0.21.7"
4545
rustls-pemfile = "1.0.4"
46-
secrecy = { version = "0.8.0", features = ["serde", "alloc"] }
46+
secrecy = { version = "0.8.0", features = ["alloc", "serde"] }
4747
serde = "1.0.154"
4848
serde_json = "1.0.94"
4949
tracing = "0.1"
5050
zenoh = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
51-
"unstable", "plugins"
51+
"plugins",
52+
"unstable",
5253
] }
5354
zenoh-collections = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
5455
zenoh-core = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
5556
zenoh-ext = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
5657
"unstable",
5758
] }
59+
zenoh-plugin-mqtt = { version = "0.11.0-dev", path = "zenoh-plugin-mqtt/", default-features = false }
5860
zenoh-plugin-rest = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
5961
zenoh-plugin-trait = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
6062
zenoh-util = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
6163

6264
[profile.release]
65+
codegen-units = 1
6366
debug = false
6467
lto = "fat"
65-
codegen-units = 1
6668
opt-level = 3
6769
panic = "abort"

zenoh-bridge-mqtt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ serde_json = { workspace = true }
3232
zenoh = { workspace = true }
3333
zenoh-plugin-rest = { workspace = true }
3434
zenoh-plugin-trait = { workspace = true }
35-
zenoh-plugin-mqtt = { version = "0.11.0-dev", path = "../zenoh-plugin-mqtt/", default-features = false }
35+
zenoh-plugin-mqtt = { workspace = true }
3636
zenoh-util = { workspace = true }
3737

3838
[[bin]]

0 commit comments

Comments
 (0)