Skip to content

Commit

Permalink
more build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Arqu committed Jul 5, 2024
1 parent 21ca07c commit d94a592
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions iroh-docs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ hex = "0.4"
iroh-base = { version = "0.19.0", path = "../iroh-base" }
iroh-blobs = { version = "0.19.0", path = "../iroh-blobs", optional = true, features = ["downloader"] }
iroh-gossip = { version = "0.19.0", path = "../iroh-gossip", optional = true }
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics", optional = true }
iroh-metrics = { version = "0.19.0", path = "../iroh-metrics", default-features = false }
iroh-net = { version = "0.19.0", optional = true, path = "../iroh-net" }
lru = "0.12"
num_enum = "0.7"
Expand Down Expand Up @@ -58,7 +58,7 @@ test-strategy = "0.3.1"
[features]
default = ["net", "metrics", "engine"]
net = ["dep:iroh-net", "tokio/io-util", "dep:tokio-stream", "dep:tokio-util"]
metrics = ["dep:iroh-metrics"]
metrics = ["iroh-metrics/metrics"]
engine = ["net", "dep:iroh-gossip", "dep:iroh-blobs"]

[package.metadata.docs.rs]
Expand Down
1 change: 0 additions & 1 deletion iroh-docs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
//! [paper]: https://arxiv.org/abs/2212.13567
#![deny(missing_docs, rustdoc::broken_intra_doc_links)]

#[cfg(feature = "metrics")]
pub mod metrics;
#[cfg(feature = "net")]
pub mod net;
Expand Down

0 comments on commit d94a592

Please sign in to comment.