-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (61 loc) · 2.63 KB
/
Cargo.toml
File metadata and controls
67 lines (61 loc) · 2.63 KB
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
63
64
65
66
67
[workspace]
members = ["zenoh-plugin-remote-api", "zenoh-bridge-remote-api", "zenoh-keyexpr-wasm"]
resolver = "1"
[workspace.package]
version = "1.7.2"
repository = "https://github.com/eclipse-zenoh/zenoh-ts"
homepage = "http://zenoh.io"
authors = ["Charles Schleich <charles.schleich@zettascale.tech>"]
edition = "2021"
license = "EPL-2.0 OR Apache-2.0"
categories = ["network-programming"]
description = "Remote API Plugin for Zenoh using Websockets"
[workspace.dependencies]
async-liveliness-monitor = "0.1.1"
bytes = "1.10.1"
clap = { version = "4.5.40", features = ["derive"] }
rustc_version = "0.4.0"
tokio = { version = "1.45.1", features = ["rt", "macros", "time"] }
tokio-tungstenite = "0.27.0"
tokio-rustls = { version = "0.26.2", default-features = false }
futures-util = { version = "0.3.31", default-features = false }
rustls-pemfile = "2.2.0"
base64 = "0.22.1"
flume = "0.11.1"
futures = "0.3.5"
git-version = "0.3.5"
lazy_static = "1.4.0"
lru = "0.14.0"
tracing = "0.1.41"
schemars = { version = "0.8.21" } # do not switch to 0.9, it's not supported by rust 1.75
serde = { version = "1.0.219", default-features = false, features = [
"derive",
] } # Default features are disabled due to usage in no_std crates
serde_json = "1.0.140"
jsonschema = { version = "0.18.0", default-features = false }
zenoh = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", features = [
"internal",
"plugins",
"unstable",
], version = "1.7.2" }
zenoh-ext = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", version = "1.7.2" }
zenoh-plugin-trait = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", version = "1.7.2" }
zenoh-util = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", version = "1.7.2" }
zenoh-result = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", version = "1.7.2" }
zenoh-keyexpr = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", version = "1.7.2" }
zenoh-plugin-remote-api = { path = "zenoh-plugin-remote-api", version = "1.7.2" }
uuid = { version = "1.17.0", default-features = false, features = [
"v4",
"serde",
] }
uhlc = { version = "0.8.0", default-features = false } # Default features are disabled due to usage in no_std crates
cargo-run-bin = "1.7.4"
[workspace.dependencies.zenohd]
version = "1.7.2"
branch = "main"
git = "https://github.com/eclipse-zenoh/zenoh.git"
[workspace.metadata.bin]
zenohd = { git = "https://github.com/eclipse-zenoh/zenoh.git", branch = "main", version = "1.7.2" }
[profile.release.package.zenoh-keyexpr-wasm]
# Tell `rustc` to optimize for small code size for wasm project
opt-level = "s"