Skip to content

Commit

Permalink
add net feature
Browse files Browse the repository at this point in the history
  • Loading branch information
rklaehn committed Dec 6, 2024
1 parent 5426a9e commit bcedb9f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ futures-util = { version = "0.3.25" }
hex = "0.4"
iroh-base = { version = "0.29" }
iroh-blobs = { version = "0.29.0", optional = true, features = ["downloader"] }
iroh-gossip = { version = "0.29.0", optional = true }
iroh-gossip = { version = "0.29.0", optional = true, features = ["net"] }
iroh-metrics = { version = "0.29.0", default-features = false }
iroh = { version = "0.29", optional = true }
num_enum = "0.7"
Expand Down
1 change: 0 additions & 1 deletion tests/util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ impl<S: BlobStore> Builder<S> {
builder = builder.dns_resolver(dns_resolver);
}
let endpoint = builder.bind().await?;
let addr = endpoint.node_addr().await?;
let local_pool = LocalPool::single();
let mut router = iroh::protocol::Router::builder(endpoint.clone());
let blobs = Blobs::builder(store.clone()).build(&local_pool, &endpoint);
Expand Down

0 comments on commit bcedb9f

Please sign in to comment.