forked from Owlput/OwlNest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (52 loc) · 1.01 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
[workspace]
members = [
"owlnest",
"memcache",
"owlnest-proc",
"owlnest-macro",
"protocols/owlnest-blob",
"owlnest-prelude",
"protocols/owlnest-hyper",
"protocols/owlnest-messaging",
"protocols/owlnest-advertise",
"protocols/template", "owlnest-core",
]
default_member = ["owlnest"]
resolver = "2"
[workspace.dependencies]
tokio = { version = "1", features = ["full"] }
libp2p = { path = "../../Owlput/rust-libp2p/libp2p", features = [
"autonat",
"dcutr",
"dns",
"ecdsa",
"ed25519",
"gossipsub",
"identify",
"json",
"kad",
"macros",
"mdns",
"memory-connection-limits",
"metrics",
"noise",
"ping",
"pnet",
"quic",
"relay",
"rendezvous",
"request-response",
"serde",
"tcp",
"tls",
"tokio",
"uds",
"websocket",
"yamux",
"upnp",
] }
futures = "0.3"
futures-timer = "3"
tracing = "0.1"
serde = { version = "1", features = ["derive"] }
derive_more = { version = "1", features = ["from"] }