-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (38 loc) · 929 Bytes
/
Cargo.toml
File metadata and controls
40 lines (38 loc) · 929 Bytes
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
[workspace]
members = [
"crates/bonded-core",
"crates/bonded-client",
"crates/bonded-server",
"crates/bonded-cli",
"crates/bonded-ffi",
]
exclude = ["server"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "TBD"
version = "0.1.0"
[workspace.dependencies]
anyhow = "1"
async-trait = "0.1"
base64 = "0.22"
bytes = "1"
ed25519-dalek = { version = "2", features = ["rand_core"] }
notify = "8"
pnet_datalink = "0.35"
qrcode = "0.14"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
thiserror = "2"
tokio = { version = "1", features = ["full"] }
tokio-tungstenite = { version = "0.24", features = ["rustls-tls-webpki-roots"] }
tokio-rustls = "0.26"
rustls = "0.23"
rustls-pemfile = "2"
futures-util = "0.3"
clap = { version = "4", features = ["derive", "env"] }
tokio-util = "0.7"
toml = "1"
tracing = "0.1"
tracing-subscriber = "0.3"
tun = { version = "0.8.6", features = ["async"] }