forked from eclipse-zenoh/zenoh-plugin-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
62 lines (59 loc) · 1.84 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#
# Copyright (c) 2022 ZettaScale Technology
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ZettaScale Zenoh Team, <zenoh@zettascale.tech>
#
[workspace]
resolver = "2"
members = [
"zenoh-bridge-mqtt",
"zenoh-plugin-mqtt",
]
[workspace.package]
version = "0.10.0-dev"
authors = [
"Julien Enoch <julien@enoch.fr>",
]
edition = "2021"
repository = "https://github.com/eclipse-zenoh/zenoh-plugin-mqtt"
homepage = "http://zenoh.io"
license = "EPL-2.0 OR Apache-2.0"
categories = ["network-programming"]
[workspace.dependencies]
async-std = "=1.12.0"
async-trait = "0.1.66"
clap = "3.2.23"
derivative = "2.2.0"
env_logger = "0.10.0"
flume = "0.10.14"
futures = "0.3.26"
git-version = "0.3.5"
hex = "0.4.3"
lazy_static = "1.4.0"
log = "0.4.17"
ntex = "0.5.31"
ntex-mqtt = "0.9.2"
regex = "1.7.1"
rustc_version = "0.4"
serde = "1.0.154"
serde_json = "1.0.94"
zenoh = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master", features = ["unstable"] }
zenoh-collections = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh-core = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh-ext = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master", features = ["unstable"] }
zenoh-plugin-rest = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master", default-features = false }
zenoh-plugin-trait = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master", default-features = false }
[profile.release]
debug = false
lto = "fat"
codegen-units = 1
opt-level = 3
panic = "abort"