Skip to content

Commit

Permalink
chore(network): use only required features from libp2p dependecy (#392)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbozic authored Jun 19, 2024
1 parent da96058 commit 721d851
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion crates/network/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,23 @@ license.workspace = true
bytes.workspace = true
eyre.workspace = true
futures-util.workspace = true
libp2p = { workspace = true, features = ["full"] }
libp2p = { workspace = true, features = [
"dcutr",
"gossipsub",
"identify",
"kad",
"macros",
"mdns",
"noise",
"ping",
"quic",
"rendezvous",
"relay",
"tokio",
"tcp",
"tls",
"yamux",
] }
libp2p-stream.workspace = true
multiaddr.workspace = true
owo-colors.workspace = true
Expand Down

0 comments on commit 721d851

Please sign in to comment.