-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
51 lines (47 loc) · 1.06 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
[workspace]
resolver = "2"
members = [
"bin/agent",
"bin/relayer",
"crates/*",
]
[workspace.dependencies]
p2p = { package = "atm0s-small-p2p", version = "0.2" }
protocol = { path = "crates/protocol", package = "atm0s-reverse-proxy-protocol", version = "0.3.0" }
protocol-ed25519 = { path = "crates/protocol_ed25519", package = "atm0s-reverse-proxy-protocol-ed25519", version = "0.1.4" }
log = "0.4"
tokio-yamux = "0.3"
clap = "4.4"
async-trait = "0.1"
tokio = "1"
httparse = "1.8"
tls-parser = "0.12"
rtsp-types = "0.1"
tracing-subscriber = "0.3"
atm0s-sdn = "0.2"
serde = "1.0"
bincode = "1.3"
metrics-dashboard = "0.3"
poem = "2.0"
metrics = "0.22"
quinn = "0.11"
rustls = "0.23"
ed25519-dalek = "2.1"
rand = "0.8"
rcgen = "0.13"
url = "2.5"
base64 = "0.22"
local-ip-address = "0.6"
derive_more = "1.0"
thiserror = "2.0"
anyhow = "1.0"
parking_lot = "0.12"
futures = "0.3"
tokio-util = "0.7"
test-log = "0.2"
lru = "0.12"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true
codegen-units = 1