diff --git a/Cargo.lock b/Cargo.lock index ef00b9b8..4b83a300 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -970,7 +970,6 @@ dependencies = [ "dragonfly-client-util", "fastrand", "fs2", - "fslock", "futures", "glob", "hashring", @@ -985,8 +984,6 @@ dependencies = [ "lazy_static", "leaky-bucket", "local-ip-address", - "lru", - "openssl", "opentelemetry", "opentelemetry-otlp", "opentelemetry-semantic-conventions", @@ -1023,7 +1020,6 @@ dependencies = [ "tracing-subscriber", "url", "uuid", - "validator", "warp", ] @@ -1118,7 +1114,6 @@ dependencies = [ "serde_json", "tempfile", "tokio", - "toml", "toml_edit", "tracing", "url", @@ -1139,13 +1134,11 @@ dependencies = [ "dragonfly-client-core", "dragonfly-client-util", "fs2", - "lru", "num_cpus", "prost-wkt-types", "reqwest", "rocksdb", "serde", - "sha2", "tempfile", "tokio", "tokio-util", @@ -1165,10 +1158,8 @@ dependencies = [ "hex", "http 1.3.1", "http-range-header", - "hyper 1.6.0", "lazy_static", "lru", - "openssl", "pnet", "rcgen", "reqwest", @@ -1336,16 +1327,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "fslock" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb" -dependencies = [ - "libc", - "winapi", -] - [[package]] name = "futures" version = "0.3.31" @@ -2829,15 +2810,6 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" -[[package]] -name = "openssl-src" -version = "300.2.1+3.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3" -dependencies = [ - "cc", -] - [[package]] name = "openssl-sys" version = "0.9.107" @@ -2846,7 +2818,6 @@ checksum = "8288979acd84749c744a9014b4382d42b8f7b2592847b5afb2ed29e5d16ede07" dependencies = [ "cc", "libc", - "openssl-src", "pkg-config", "vcpkg", ] @@ -4353,15 +4324,6 @@ dependencies = [ "serde", ] -[[package]] -name = "serde_spanned" -version = "0.6.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" -dependencies = [ - "serde", -] - [[package]] name = "serde_urlencoded" version = "0.7.1" @@ -4982,26 +4944,11 @@ dependencies = [ "tokio", ] -[[package]] -name = "toml" -version = "0.8.23" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit", -] - [[package]] name = "toml_datetime" version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c" -dependencies = [ - "serde", -] [[package]] name = "toml_edit" @@ -5010,8 +4957,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a" dependencies = [ "indexmap 2.5.0", - "serde", - "serde_spanned", "toml_datetime", "toml_write", "winnow", diff --git a/dragonfly-client-init/Cargo.toml b/dragonfly-client-init/Cargo.toml index 59a9f208..fc941cec 100644 --- a/dragonfly-client-init/Cargo.toml +++ b/dragonfly-client-init/Cargo.toml @@ -23,7 +23,6 @@ tokio.workspace = true anyhow.workspace = true tracing.workspace = true toml_edit.workspace = true -toml.workspace = true url.workspace = true tempfile.workspace = true serde_json.workspace = true diff --git a/dragonfly-client-storage/Cargo.toml b/dragonfly-client-storage/Cargo.toml index c342e066..75ed58f4 100644 --- a/dragonfly-client-storage/Cargo.toml +++ b/dragonfly-client-storage/Cargo.toml @@ -22,10 +22,8 @@ tracing.workspace = true prost-wkt-types.workspace = true tokio.workspace = true tokio-util.workspace = true -sha2.workspace = true crc32fast.workspace = true fs2.workspace = true -lru.workspace = true bytes.workspace = true bytesize.workspace = true num_cpus = "1.17" diff --git a/dragonfly-client-util/Cargo.toml b/dragonfly-client-util/Cargo.toml index 3fc5667e..f5ef0382 100644 --- a/dragonfly-client-util/Cargo.toml +++ b/dragonfly-client-util/Cargo.toml @@ -13,7 +13,6 @@ edition.workspace = true dragonfly-client-core.workspace = true dragonfly-api.workspace = true reqwest.workspace = true -hyper.workspace = true http-range-header.workspace = true http.workspace = true tracing.workspace = true @@ -25,7 +24,6 @@ rustls-pemfile.workspace = true sha2.workspace = true uuid.workspace = true hex.workspace = true -openssl.workspace = true crc32fast.workspace = true lazy_static.workspace = true bytesize.workspace = true diff --git a/dragonfly-client/Cargo.toml b/dragonfly-client/Cargo.toml index 19e166f5..f9928669 100644 --- a/dragonfly-client/Cargo.toml +++ b/dragonfly-client/Cargo.toml @@ -34,8 +34,6 @@ hyper.workspace = true hyper-util.workspace = true hyper-rustls.workspace = true tracing.workspace = true -validator.workspace = true -humantime.workspace = true serde.workspace = true chrono.workspace = true prost-wkt-types.workspace = true @@ -50,16 +48,15 @@ tokio-stream.workspace = true reqwest.workspace = true url.workspace = true http.workspace = true -openssl.workspace = true clap.workspace = true anyhow.workspace = true bytes.workspace = true bytesize.workspace = true +humantime.workspace = true uuid.workspace = true percent-encoding.workspace = true tokio-rustls.workspace = true serde_json.workspace = true -lru.workspace = true fs2.workspace = true lazy_static.workspace = true futures.workspace = true @@ -80,7 +77,6 @@ sysinfo = { version = "0.32.1", default-features = false, features = ["component tower = { version = "0.4.13", features = ["limit", "load-shed", "buffer"] } indicatif = "0.18.0" hashring = "0.3.6" -fslock = "0.2.1" leaky-bucket = "1.1.2" http-body-util = "0.1.3" termion = "4.0.5"