# 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 = "arkiv" version = "0.7.0" authors = ["Cédric Meuter "] description = "library providing convenience function to manipulate various kind of archive (zip, tar.gz, tar.xz, ... )" homepage = "https://github.com/meuter/arkiv-rs" readme = "README.md" keywords = ["compression"] license = "MIT" repository = "https://github.com/meuter/arkiv-rs" [dependencies.bzip2] version = "0.4" optional = true [dependencies.flate2] version = "1.0" optional = true [dependencies.tar] version = "0.4" optional = true [dependencies.tempfile] version = "3.8.0" optional = true [dependencies.ureq] version = "2.7.1" optional = true [dependencies.xz2] version = "0.1" optional = true [dependencies.zip] version = "0.6" features = [ "deflate", "time", ] optional = true default-features = false [dependencies.zstd] version = "0.12" optional = true [dev-dependencies.httptest] version = "0.15.4" [dev-dependencies.tempfile] version = "3.8.0" [dev-dependencies.tokio] version = "1.32.0" features = ["macros"] [features] bzip = ["bzip2"] default = [ "zip", "tar", "gzip", "xz", "bzip", "zstd", "download", ] download = [ "tempfile", "ureq", ] gzip = ["flate2"] xz = ["xz2"]