Skip to content

Commit bd85f4c

Browse files
chore: Bump version to 0.11.0-dev-81-ga69f908
1 parent a69f908 commit bd85f4c

File tree

1 file changed

+44
-29
lines changed

1 file changed

+44
-29
lines changed

Cargo.toml

Lines changed: 44 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,15 @@
1-
#
2-
# Copyright (c) 2022 ZettaScale Technology
3-
#
4-
# This program and the accompanying materials are made available under the
5-
# terms of the Eclipse Public License 2.0 which is available at
6-
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
7-
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
8-
#
9-
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
10-
#
11-
# Contributors:
12-
# ZettaScale Zenoh Team, <[email protected]>
13-
#
141
[workspace]
152
resolver = "2"
16-
members = ["zenoh-bridge-mqtt", "zenoh-plugin-mqtt"]
3+
members = [ "zenoh-bridge-mqtt", "zenoh-plugin-mqtt" ]
174

185
[workspace.package]
19-
version = "0.11.0-dev"
20-
authors = ["Julien Enoch <[email protected]>"]
6+
version = "0.11.0-dev-81-ga69f908"
7+
authors = [ "Julien Enoch <[email protected]>" ]
218
edition = "2021"
229
repository = "https://github.com/eclipse-zenoh/zenoh-plugin-mqtt"
2310
homepage = "http://zenoh.io"
2411
license = "EPL-2.0 OR Apache-2.0"
25-
categories = ["network-programming"]
12+
categories = [ "network-programming" ]
2613

2714
[workspace.dependencies]
2815
async-channel = "2.2.0"
@@ -45,23 +32,51 @@ regex = "1.7.1"
4532
rustc_version = "0.4"
4633
rustls = "0.21.7"
4734
rustls-pemfile = "1.0.4"
48-
secrecy = { version = "0.8.0", features = ["serde", "alloc"] }
4935
serde = "1.0.154"
5036
serde_json = "1.0.94"
51-
zenoh = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
52-
"unstable",
53-
] }
54-
zenoh-collections = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
55-
zenoh-core = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
56-
zenoh-ext = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
57-
"unstable",
58-
] }
59-
zenoh-plugin-rest = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
60-
zenoh-plugin-trait = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
6137

38+
[workspace.dependencies.secrecy]
39+
version = "0.8.0"
40+
features = [ "serde", "alloc" ]
41+
42+
[workspace.dependencies.zenoh]
43+
version = "0.11.0-dev"
44+
git = "https://github.com/eclipse-zenoh/zenoh.git"
45+
branch = "main"
46+
features = [ "unstable" ]
47+
48+
[workspace.dependencies.zenoh-collections]
49+
version = "0.11.0-dev"
50+
git = "https://github.com/eclipse-zenoh/zenoh.git"
51+
branch = "main"
52+
53+
[workspace.dependencies.zenoh-core]
54+
version = "0.11.0-dev"
55+
git = "https://github.com/eclipse-zenoh/zenoh.git"
56+
branch = "main"
57+
58+
[workspace.dependencies.zenoh-ext]
59+
version = "0.11.0-dev"
60+
git = "https://github.com/eclipse-zenoh/zenoh.git"
61+
branch = "main"
62+
features = [ "unstable" ]
63+
64+
[workspace.dependencies.zenoh-plugin-rest]
65+
version = "0.11.0-dev"
66+
git = "https://github.com/eclipse-zenoh/zenoh.git"
67+
branch = "main"
68+
default-features = false
69+
70+
[workspace.dependencies.zenoh-plugin-trait]
71+
version = "0.11.0-dev"
72+
git = "https://github.com/eclipse-zenoh/zenoh.git"
73+
branch = "main"
74+
default-features = false
75+
76+
[profile]
6277
[profile.release]
6378
debug = false
6479
lto = "fat"
6580
codegen-units = 1
6681
opt-level = 3
67-
panic = "abort"
82+
panic = "abort"

0 commit comments

Comments
 (0)