-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 913 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 913 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.dependencies]
libp2p = { git = "https://github.com/kalabukdima/rust-libp2p.git", rev = "c0ed330" }
libp2p-identity = { version = "0.2.12", features = ["peerid"] }
libp2p-connection-limits = { git = "https://github.com/kalabukdima/rust-libp2p.git", rev = "c0ed330" }
libp2p-swarm-derive = { git = "https://github.com/kalabukdima/rust-libp2p.git", rev = "c0ed330" }
libp2p-stream = { git = "https://github.com/kalabukdima/rust-libp2p.git", rev = "c0ed330" }
[workspace.lints.rust]
unsafe_code = "deny"
[workspace.lints.clippy]
cast_possible_truncation = "warn"
dbg_macro = "warn"
explicit_iter_loop = "warn"
inefficient_to_string = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
needless_pass_by_value = "warn"
redundant_closure_for_method_calls = "warn"
type_repetition_in_bounds = "warn"
use_self = "warn"
used_underscore_binding = "warn"