From 4dcd88e46b21ffdd26ef987081d9dca9afad0179 Mon Sep 17 00:00:00 2001 From: Jacob Gelman <3182119+ladvoc@users.noreply.github.com> Date: Wed, 22 Oct 2025 17:18:52 +1100 Subject: [PATCH] Remove unused dependencies Detected with udeps --- Cargo.lock | 3 --- examples/api/Cargo.toml | 3 +-- examples/save_to_disk/Cargo.toml | 1 - livekit-protocol/Cargo.toml | 1 - livekit/Cargo.toml | 1 - 5 files changed, 1 insertion(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bb87c26f3..9376c3930 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -225,7 +225,6 @@ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61" name = "api" version = "0.1.0" dependencies = [ - "futures", "livekit-api", "tokio", ] @@ -3061,7 +3060,6 @@ dependencies = [ "pbjson", "pbjson-types", "prost 0.12.6", - "prost-types 0.12.6", "serde", "thiserror 1.0.69", "tokio", @@ -4793,7 +4791,6 @@ dependencies = [ "futures", "livekit", "tokio", - "tokio-util", ] [[package]] diff --git a/examples/api/Cargo.toml b/examples/api/Cargo.toml index 2ebf5edcb..58f4d9c5a 100644 --- a/examples/api/Cargo.toml +++ b/examples/api/Cargo.toml @@ -6,5 +6,4 @@ publish = false [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } -livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } -futures = "0.3" \ No newline at end of file +livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } \ No newline at end of file diff --git a/examples/save_to_disk/Cargo.toml b/examples/save_to_disk/Cargo.toml index 95c28d790..0fd6cea8e 100644 --- a/examples/save_to_disk/Cargo.toml +++ b/examples/save_to_disk/Cargo.toml @@ -8,5 +8,4 @@ publish = false tokio = { version = "1", features = ["full"] } livekit = { workspace = true, features = ["rustls-tls-native-roots"] } bytes = "1.4.0" -tokio-util = "0.7.8" futures = "0.3.28" diff --git a/livekit-protocol/Cargo.toml b/livekit-protocol/Cargo.toml index 6697fda22..072175a72 100644 --- a/livekit-protocol/Cargo.toml +++ b/livekit-protocol/Cargo.toml @@ -16,7 +16,6 @@ tokio = { version = "1", default-features = false, features = [ futures-util = { version = "0.3", features = ["sink"] } parking_lot = "0.12" prost = "0.12" -prost-types = "0.12" serde = "1.0" pbjson = "0.6" diff --git a/livekit/Cargo.toml b/livekit/Cargo.toml index e41c726f7..ca66b1bef 100644 --- a/livekit/Cargo.toml +++ b/livekit/Cargo.toml @@ -44,7 +44,6 @@ semver = "1.0" libloading = { version = "0.8.6" } bytes = "1.10.1" bmrng = "0.5.2" -test-log = "0.2.18" [dev-dependencies] anyhow = "1.0.99"