async deps: add pin-project

This commit is contained in:
Dmitry Belyaev 2023-08-13 18:14:41 +03:00
parent 908a6d8cae
commit 3e3572ce12
2 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View File

@ -352,6 +352,7 @@ dependencies = [
"futures-util", "futures-util",
"insta", "insta",
"memmap", "memmap",
"pin-project",
"serde", "serde",
"serde_derive", "serde_derive",
"serde_json", "serde_json",

View File

@ -20,6 +20,7 @@ async = [
"tokio", "tokio",
"async-compression", "async-compression",
"async-stream", "async-stream",
"pin-project",
] ]
source = ["zip"] source = ["zip"]
source_async = [ source_async = [
@ -68,6 +69,7 @@ async-compression = { git = "https://github.com/Nullus157/async-compression", re
async-stream = { version = "0.3", optional = true } async-stream = { version = "0.3", optional = true }
zstd = { version = "^0.12", default-features = false, optional = true } zstd = { version = "^0.12", default-features = false, optional = true }
memmap = { version = "0.7.0", optional = true } memmap = { version = "0.7.0", optional = true }
pin-project = { version = "1.1.3", optional = true }
[dev-dependencies] [dev-dependencies]
insta = { version = "1.31.0", features = ["yaml"] } insta = { version = "1.31.0", features = ["yaml"] }