diff --git a/Cargo.lock b/Cargo.lock index 1c0692ffa..7afea1e6e 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 7a78f3c45..a09bae01d 100644 --- a/examples/api/Cargo.toml +++ b/examples/api/Cargo.toml @@ -7,4 +7,3 @@ publish = false [dependencies] tokio = { version = "1", features = ["full", "parking_lot"] } livekit-api = { workspace = true, features = ["rustls-tls-native-roots"] } -futures = "0.3" 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 2be5b8620..49ad8f744 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 8cde89f39..23aa4f6ea 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"