Skip to content

Commit 1f5390d

Browse files
chore: Bump version to 0.11.0-dev-86-gcea8231
1 parent cea8231 commit 1f5390d

File tree

1 file changed

+49
-30
lines changed

1 file changed

+49
-30
lines changed

Cargo.toml

Lines changed: 49 additions & 30 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-86-gcea8231"
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"
@@ -43,25 +30,57 @@ regex = "1.7.1"
4330
rustc_version = "0.4"
4431
rustls = "0.21.7"
4532
rustls-pemfile = "1.0.4"
46-
secrecy = { version = "0.8.0", features = ["serde", "alloc"] }
4733
serde = "1.0.154"
4834
serde_json = "1.0.94"
4935
tracing = "0.1"
50-
zenoh = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
51-
"unstable",
52-
] }
53-
zenoh-collections = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
54-
zenoh-core = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
55-
zenoh-ext = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
56-
"unstable",
57-
] }
58-
zenoh-plugin-rest = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
59-
zenoh-plugin-trait = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", default-features = false }
60-
zenoh-util = { version = "0.11.0-dev", git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main" }
6136

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

0 commit comments

Comments
 (0)