diff --git a/Cargo.lock b/Cargo.lock index 51d5b12..953c9b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -259,11 +259,8 @@ name = "clean_file" version = "1.1.0" dependencies = [ "async-std", - "futures", "schedtxt_models", - "serde", "serde_json", - "tempfile", "tokio", ] @@ -576,21 +573,6 @@ dependencies = [ "percent-encoding", ] -[[package]] -name = "futures" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d" -dependencies = [ - "futures-channel", - "futures-core", - "futures-executor", - "futures-io", - "futures-sink", - "futures-task", - "futures-util", -] - [[package]] name = "futures-channel" version = "0.3.32" @@ -648,17 +630,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "futures-macro" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" -dependencies = [ - "proc-macro2", - "quote", - "syn", -] - [[package]] name = "futures-sink" version = "0.3.32" @@ -677,10 +648,8 @@ version = "0.3.32" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" dependencies = [ - "futures-channel", "futures-core", "futures-io", - "futures-macro", "futures-sink", "futures-task", "memchr", diff --git a/Cargo.toml b/Cargo.toml index 9b99740..3810034 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,11 +7,8 @@ rust-version = "1.96" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1.52.3", features = ["full"] } -futures = { version = "0.3.32" } -serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.150" } schedtxt_models = { git = "ssh://git@git.kundeng.us/phoenix/schedtxt_models.git", tag = "v0.5.3", features = ["contact"] } [dev-dependencies] -tempfile = { version = "3.27.0" } async-std = { version = "1.13.2" }