Remove unused stop-token dependency

stop-token 0.2.0 is required by async-imap. This Cargo.toml entry
additionally pulled in unused stop-token 0.7.0.
This commit is contained in:
link2xt
2022-04-16 11:24:11 +00:00
parent 9c04ed483e
commit 14ab3c8651
2 changed files with 1 additions and 15 deletions

15
Cargo.lock generated
View File

@@ -224,7 +224,7 @@ dependencies = [
"once_cell",
"ouroboros",
"pin-utils",
"stop-token 0.2.0",
"stop-token",
"thiserror",
]
@@ -1123,7 +1123,6 @@ dependencies = [
"sha-1 0.10.0",
"sha2 0.10.2",
"smallvec",
"stop-token 0.7.0",
"strum",
"strum_macros",
"surf",
@@ -3609,18 +3608,6 @@ dependencies = [
"pin-project-lite",
]
[[package]]
name = "stop-token"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af91f480ee899ab2d9f8435bfdfc14d08a5754bd9d3fef1f1a1c23336aad6c8b"
dependencies = [
"async-channel",
"cfg-if 1.0.0",
"futures-core",
"pin-project-lite",
]
[[package]]
name = "str-buf"
version = "1.0.5"

View File

@@ -62,7 +62,6 @@ serde = { version = "1.0", features = ["derive"] }
sha-1 = "0.10"
sha2 = "0.10"
smallvec = "1"
stop-token = "0.7"
strum = "0.24"
strum_macros = "0.24"
surf = { version = "2.3", default-features = false, features = ["h1-client"] }