Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Arqu committed Jul 22, 2024
1 parent 972818f commit 3cf985a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions iroh-blobs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ hashlink = { version = "0.9.0", optional = true }
hex = "0.4.3"
iroh-base = { version = "0.20.0", features = ["redb"], path = "../iroh-base" }
iroh-io = { version = "0.6.0", features = ["stats"] }
iroh-metrics = { version = "0.20.0", path = "../iroh-metrics", optional = true }
iroh-metrics = { version = "0.20.0", path = "../iroh-metrics", default-features = false }
iroh-net = { version = "0.20.0", path = "../iroh-net" }
num_cpus = "1.15.0"
parking_lot = { version = "0.12.1", optional = true }
Expand Down Expand Up @@ -74,10 +74,10 @@ package = "iroh-quinn"
version = "0.10"

[features]
default = ["fs-store", "metrics"]
default = ["fs-store"]
downloader = ["dep:parking_lot", "tokio-util/time", "dep:hashlink"]
fs-store = ["dep:reflink-copy", "redb", "dep:redb_v1", "dep:tempfile"]
metrics = ["dep:iroh-metrics"]
metrics = ["iroh-metrics/metrics"]
redb = ["dep:redb"]

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion iroh-docs/src/engine/gossip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ use tokio_stream::{
};
use tracing::{debug, error, trace, warn};

use crate::{actor::SyncHandle, ContentStatus, NamespaceId};
use crate::metrics::Metrics;
use crate::{actor::SyncHandle, ContentStatus, NamespaceId};

use super::live::{Op, ToLiveActor};

Expand Down

0 comments on commit 3cf985a

Please sign in to comment.