60 lines
2.1 KiB
TOML
60 lines
2.1 KiB
TOML
[package]
|
|
name = "zip_next"
|
|
version = "0.11.0"
|
|
authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>",
|
|
"Chris Hennick <hennickc@amazon.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/Pr0methean/zip-next.git"
|
|
keywords = ["zip", "archive"]
|
|
description = """
|
|
rust-version = "1.67.0"
|
|
Library to support the reading and writing of zip files.
|
|
"""
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
aes = { version = "0.8.4", optional = true }
|
|
byteorder = "1.5.0"
|
|
bzip2 = { version = "0.4.4", optional = true }
|
|
chrono = { version = "0.4.34", optional = true }
|
|
constant_time_eq = { version = "0.3.0", optional = true }
|
|
crc32fast = "1.4.0"
|
|
flate2 = { version = "1.0.28", default-features = false, optional = true }
|
|
hmac = { version = "0.12.1", optional = true, features = ["reset"] }
|
|
pbkdf2 = {version = "0.12.2", optional = true }
|
|
sha1 = {version = "0.10.6", optional = true }
|
|
time = { version = "0.3.34", optional = true, default-features = false, features = ["std"] }
|
|
zstd = { version = "0.13.0", optional = true, default-features = false }
|
|
zopfli = { version = "0.8.0", optional = true }
|
|
deflate64 = { git = "https://github.com/anatawa12/deflate64-rs.git", optional = true }
|
|
|
|
[target.'cfg(any(all(target_arch = "arm", target_pointer_width = "32"), target_arch = "mips", target_arch = "powerpc"))'.dependencies]
|
|
crossbeam-utils = "0.8.19"
|
|
|
|
[target.'cfg(fuzzing)'.dependencies]
|
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
bencher = "0.1.5"
|
|
getrandom = { version = "0.2.12", features = ["js"] }
|
|
walkdir = "2.4.0"
|
|
time = { version = "0.3.34", features = ["formatting", "macros"] }
|
|
|
|
[features]
|
|
aes-crypto = [ "aes", "constant_time_eq", "hmac", "pbkdf2", "sha1" ]
|
|
chrono = ["chrono/default"]
|
|
deflate = ["flate2/rust_backend"]
|
|
deflate-miniz = ["flate2/default"]
|
|
deflate-zlib = ["flate2/zlib"]
|
|
deflate-zlib-ng = ["flate2/zlib-ng"]
|
|
deflate-zopfli = ["zopfli"]
|
|
unreserved = []
|
|
default = ["aes-crypto", "bzip2", "deflate", "deflate64", "deflate-zlib-ng", "deflate-zopfli", "time", "zstd"]
|
|
|
|
[[bench]]
|
|
name = "read_entry"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "read_metadata"
|
|
harness = false
|