Updates the requirements on [num_enum](https://github.com/illicitonion/num_enum) to permit the latest version. - [Commits](https://github.com/illicitonion/num_enum/compare/0.6.1...0.7.2) --- updated-dependencies: - dependency-name: num_enum dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
94 lines
2.7 KiB
TOML
94 lines
2.7 KiB
TOML
[package]
|
|
name = "zip"
|
|
version = "1.1.3"
|
|
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/zip-rs/zip2.git"
|
|
keywords = ["zip", "archive"]
|
|
rust-version = "1.70.0"
|
|
description = """
|
|
Library to support the reading and writing of zip files.
|
|
"""
|
|
edition = "2021"
|
|
exclude = ["tests/**", "examples/**", ".github/**", "fuzz/**"]
|
|
build = "src/build.rs"
|
|
|
|
[workspace.dependencies]
|
|
time = { version = "0.3.36", default-features = false }
|
|
|
|
[dependencies]
|
|
aes = { version = "0.8.4", optional = true }
|
|
byteorder = "1.5.0"
|
|
bzip2 = { version = "0.4.4", optional = true }
|
|
chrono = { version = "0.4.38", optional = true }
|
|
constant_time_eq = { version = "0.3.0", optional = true }
|
|
crc32fast = "1.4.0"
|
|
displaydoc = { version = "0.2.4", default-features = false }
|
|
flate2 = { version = "1.0.28", default-features = false, optional = true }
|
|
hmac = { version = "0.12.1", optional = true, features = ["reset"] }
|
|
num_enum = "0.7.2"
|
|
pbkdf2 = { version = "0.12.2", optional = true }
|
|
sha1 = { version = "0.10.6", optional = true }
|
|
thiserror = "1.0.48"
|
|
time = { workspace = true, optional = true, features = [
|
|
"std",
|
|
] }
|
|
zstd = { version = "0.13.1", optional = true, default-features = false }
|
|
zopfli = { version = "0.8.0", optional = true }
|
|
deflate64 = { version = "0.1.8", optional = true }
|
|
lzma-rs = { version = "0.3.0", default-features = false, 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.14", features = ["js"] }
|
|
walkdir = "2.5.0"
|
|
time = { workspace = true, features = ["formatting", "macros"] }
|
|
anyhow = "1"
|
|
[features]
|
|
aes-crypto = ["aes", "constant_time_eq", "hmac", "pbkdf2", "sha1"]
|
|
chrono = ["chrono/default"]
|
|
_deflate-any = []
|
|
deflate = ["flate2/rust_backend", "_deflate-any"]
|
|
|
|
# DEPRECATED: previously enabled `flate2/miniz_oxide` which is equivalent to `flate2/rust_backend`
|
|
deflate-miniz = ["deflate", "_deflate-any"]
|
|
|
|
deflate-zlib = ["flate2/zlib", "_deflate-any"]
|
|
deflate-zlib-ng = ["flate2/zlib-ng", "_deflate-any"]
|
|
deflate-zopfli = ["zopfli", "_deflate-any"]
|
|
lzma = ["lzma-rs/stream"]
|
|
unreserved = []
|
|
default = [
|
|
"aes-crypto",
|
|
"bzip2",
|
|
"deflate",
|
|
"deflate64",
|
|
"deflate-zlib-ng",
|
|
"deflate-zopfli",
|
|
"lzma",
|
|
"time",
|
|
"zstd",
|
|
]
|
|
|
|
[[bench]]
|
|
name = "read_entry"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "read_metadata"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "merge_archive"
|
|
harness = false
|