-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 986 Bytes
/
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
[workspace]
members = [
"benchmark/code",
"dog",
"examples/*",
# Tests
"dog/tests",
]
resolver = "2"
[workspace.package]
rust-version = "1.83"
[workspace.dependencies]
libp2p-dog = { version = "0.1.0", path = "dog" }
# External dependencies
async-channel = "2.3.1"
asynchronous-codec = "0.7.0"
bytes = "1.6"
clap = "4.5.16"
either = "1.13.0"
futures = "0.3.30"
futures-timer = "3.0.3"
hex_fmt = "0.3.0"
libp2p = "0.55.0"
libp2p-core = "0.43.0"
lru = "0.12.5"
prometheus-client = "0.22.3"
quick-protobuf = "0.8.1"
quick-protobuf-codec = "0.3.1"
rand = "0.8"
serde = "1"
serde_json = "1.0.135"
thiserror = "2"
tokio = "1.42.0"
toml = "0.8.19"
tracing = "0.1.37"
tracing-subscriber = "0.3.18"
void = "1.0.2"
[workspace.lints]
rust.unreachable_pub = "warn"
clippy.used_underscore_binding = "warn"
clippy.pedantic = { level = "allow", priority = -1 }
clippy.type_complexity = "allow"
clippy.unnecessary_wraps = "warn"
clippy.manual_let_else = "warn"
clippy.dbg_macro = "warn"