add async feature #1

Merged
b4tman merged 62 commits from async into master 2023-08-18 06:29:46 +00:00
2 changed files with 3 additions and 0 deletions
Showing only changes of commit 3e3572ce12 - Show all commits

1
Cargo.lock generated
View File

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

View File

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