Skip to content

Commit

Permalink
treewide: Remove unused dependencies
Browse files Browse the repository at this point in the history
This commit removes some unused dependencies as reported by `cargo udeps`.

Change-Id: Iebcf5c662b392f2825232cc75a587d770105bfb0
  • Loading branch information
ethowitz committed Apr 24, 2024
1 parent 9dfd8c1 commit aa67b34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions readyset-telemetry-reporter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ serde_with_macros = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true, features = ["release_max_level_debug"] }
readyset-tracing = { path = "../readyset-tracing" }
readyset-tracing = { path = "../readyset-tracing", optional = true }
readyset-util = { path = "../readyset-util" }
uuid = { workspace = true, features = ["v4"] }
machine-uid = { workspace = true }
Expand All @@ -30,4 +30,4 @@ readyset-version = { path = "../readyset-version" }
tokio = { workspace = true, features = ["full", "test-util"] }

[features]
test-util = []
test-util = ["readyset-tracing"]
2 changes: 1 addition & 1 deletion replicators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ mysql-time = { path = "../mysql-time" }
mysql-srv = { path = "../mysql-srv" }
readyset-data = { path = "../readyset-data" }
database-utils = { path = "../database-utils" }
test-utils = { path = "../test-utils" }
failpoint-macros = { path = "../failpoint-macros" }
readyset-sql-passes = { path = "../readyset-sql-passes" }
readyset-telemetry-reporter = { path = "../readyset-telemetry-reporter" }
replication-offset = { path = "../replication-offset" }

[dev-dependencies]
test-utils = { path = "../test-utils" }
readyset-server = { path = "../readyset-server" }
readyset-telemetry-reporter = { path = "../readyset-telemetry-reporter", features = ["test-util"] }
readyset-client-test-helpers = { path = "../readyset-client-test-helpers", features = ["postgres"] }
Expand Down

0 comments on commit aa67b34

Please sign in to comment.