-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.12 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.12 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
[package]
name = "multiconnect-daemon"
version = "0.0.0-DEV"
edition = "2021"
[[bin]]
name = "multiconnectd"
path = "src/main.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full", "tracing"] }
console-subscriber = "0.2"
libp2p = { version = "0.56.0", features = [
"tcp",
"quic",
"ping",
"serde",
"mdns",
"noise",
"yamux",
"dns",
"tokio",
"macros",
"request-response",
"identify",
] }
multiconnect-core = { path = "../multiconnect-core" }
multiconnect-config = { path = "../multiconnect-config" }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
log = "0.4.27"
bincode = "=1.3.3"
async-trait = "0.1.88"
prost = "0.14"
tokio-stream = { version = "0.1.17", features = ["sync"] }
port_check = "0.2.1"
tokio-util = { version = "0.7.16", features = ["codec", "compat"] }
lazy_static = "1.5.0"
uuid = "1.16.0"
fern = { version = "0.7.1", features = ["colored"] }
humantime = "2.2.0"
argh = "0.1.13"
uid = "0.1.8"
serde_json = "1.0.145"
hex = "0.4.3"
thiserror = "2.0.12"
dashmap = "6.1.0"
blake3 = "1.8.2"
tracing = "0.1.41"
tracing-log = "0.2.0"