# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "async_zip2" version = "0.0.1" authors = ["Harry [hello@majored.pw]"] description = "An asynchronous ZIP archive reading/writing crate." homepage = "https://github.com/Majored/rs-async-zip" documentation = "https://docs.rs/async_zip/" readme = "README.md" keywords = [ "async", "zip", "archive", "tokio", ] categories = [ "asynchronous", "compression", ] license = "MIT" repository = "https://github.com/Majored/rs-async-zip" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.async-compression] version = "0.4.2" features = ["futures-io"] optional = true default-features = false [dependencies.chrono] version = "0.4" features = ["clock"] optional = true default-features = false [dependencies.crc32fast] version = "1" [dependencies.futures-util] version = "0.3" features = ["io"] [dependencies.pin-project] version = "1" [dependencies.thiserror] version = "1" [dependencies.tokio] version = "1" optional = true default-features = false [dependencies.tokio-util] version = "0.7" features = ["compat"] optional = true [dev-dependencies.actix-multipart] version = "0.6" [dev-dependencies.actix-web] version = "4" [dev-dependencies.anyhow] version = "1" [dev-dependencies.derive_more] version = "0.99" [dev-dependencies.env_logger] version = "0.10.0" [dev-dependencies.futures] version = "0.3" [dev-dependencies.sanitize-filename] version = "0.5" [dev-dependencies.tokio] version = "1" features = ["full"] [dev-dependencies.tokio-util] version = "0.7" features = ["compat"] [dev-dependencies.uuid] version = "1" features = [ "v4", "serde", ] [dev-dependencies.zip] version = "0.6.3" [features] bzip2 = ["async-compression/bzip2"] deflate = ["async-compression/deflate"] deflate64 = ["async-compression/deflate64"] full = [ "chrono", "tokio-fs", "deflate", "bzip2", "lzma", "zstd", "xz", "deflate64", ] full-wasm = [ "chrono", "deflate", "zstd", ] lzma = ["async-compression/lzma"] tokio = [ "dep:tokio", "tokio-util", ] tokio-fs = ["tokio/fs"] xz = ["async-compression/xz"] zstd = ["async-compression/zstd"]