Skip to content

Commit

Permalink
Remove unused dependencies and imports
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 committed Dec 10, 2024
1 parent 1045215 commit 8abf0ca
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/subspace-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,5 @@ subspace-logging = { version = "0.0.1", path = "../../shared/subspace-logging" }
subspace-networking = { version = "0.1.0", path = "../subspace-networking" }
subspace-rpc-primitives = { version = "0.1.0", path = "../subspace-rpc-primitives" }
subspace-verification = { version = "0.1.0", path = "../subspace-verification", default-features = false }
supports-color = "3.0.1"
tokio = { version = "1.40.0", features = ["rt-multi-thread", "signal", "macros"] }
tracing = "0.1.40"
2 changes: 1 addition & 1 deletion crates/subspace-networking/examples/benchmark.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ use subspace_logging::init_logger;
use subspace_networking::protocols::request_response::handlers::piece_by_index::PieceByIndexRequestHandler;
use subspace_networking::utils::piece_provider::{NoPieceValidator, PieceProvider, PieceValidator};
use subspace_networking::{Config, Node};
use tracing::{debug, error, info, trace, warn, Level};
use tracing::{debug, error, info, trace, warn};

/// Defines initial duration between get_piece calls.
const GET_PIECE_INITIAL_INTERVAL: Duration = Duration::from_secs(5);
Expand Down
2 changes: 1 addition & 1 deletion crates/subspace-networking/examples/random-walker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use subspace_networking::protocols::request_response::handlers::piece_by_index::
PieceByIndexRequest, PieceByIndexRequestHandler, PieceByIndexResponse,
};
use subspace_networking::{Config, Multihash, Node, PeerDiscovered, SendRequestError};
use tracing::{debug, error, info, warn, Level};
use tracing::{debug, error, info, warn};

#[derive(Debug, Parser)]
struct Args {
Expand Down

0 comments on commit 8abf0ca

Please sign in to comment.