Skip to content

Commit

Permalink
fix(iroh-gossip): do not enable "metrics" feature for iroh-net by def…
Browse files Browse the repository at this point in the history
…ault (#2235)

Otherwise it is impossible to disable metrics support in iroh-net
if iroh-gossip is used.

Co-authored-by: Friedel Ziegelmayer <me@dignifiedquire.com>
  • Loading branch information
link2xt and dignifiedquire committed Apr 26, 2024
1 parent f8ff3bc commit 2693ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iroh-gossip/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ iroh-base = { version = "0.14.0", path = "../iroh-base" }

# net dependencies (optional)
futures = { version = "0.3.25", optional = true }
iroh-net = { path = "../iroh-net", version = "0.14.0", optional = true }
iroh-net = { path = "../iroh-net", version = "0.14.0", optional = true, default-features = false }
quinn = { version = "0.10", optional = true }
tokio = { version = "1", optional = true, features = ["io-util", "sync", "rt", "macros", "net", "fs"] }
tokio-util = { version = "0.7.8", optional = true, features = ["codec"] }
Expand Down

0 comments on commit 2693ec5

Please sign in to comment.