Merge pull request #2732 from deltachat/dependabot/cargo/stop-token-0.4.0

This commit is contained in:
dependabot[bot]
2021-10-09 11:14:10 +00:00
committed by GitHub
2 changed files with 14 additions and 3 deletions

15
Cargo.lock generated
View File

@@ -226,7 +226,7 @@ dependencies = [
"nom 6.1.2", "nom 6.1.2",
"ouroboros", "ouroboros",
"pin-utils", "pin-utils",
"stop-token", "stop-token 0.2.0",
"thiserror", "thiserror",
] ]
@@ -1131,7 +1131,7 @@ dependencies = [
"sha-1", "sha-1",
"sha2", "sha2",
"smallvec", "smallvec",
"stop-token", "stop-token 0.4.0",
"strum", "strum",
"strum_macros", "strum_macros",
"surf", "surf",
@@ -3590,6 +3590,17 @@ dependencies = [
"pin-project-lite", "pin-project-lite",
] ]
[[package]]
name = "stop-token"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c80d4c487de9d9c5acca69b90aee5ed6c4d208faa6364105b72ece3c881cf9f3"
dependencies = [
"async-channel",
"futures-core",
"pin-project-lite",
]
[[package]] [[package]]
name = "str-buf" name = "str-buf"
version = "1.0.5" version = "1.0.5"

View File

@@ -65,7 +65,7 @@ serde = { version = "1.0", features = ["derive"] }
sha-1 = "0.9" sha-1 = "0.9"
sha2 = "0.9" sha2 = "0.9"
smallvec = "1" smallvec = "1"
stop-token = "0.2" stop-token = "0.4"
strum = "0.21" strum = "0.21"
strum_macros = "0.21" strum_macros = "0.21"
surf = { version = "2.3", default-features = false, features = ["h1-client"] } surf = { version = "2.3", default-features = false, features = ["h1-client"] }