1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
# 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"
rust-version = "1.59.0"
name = "zip"
version = "0.6.6"
authors = [
"Mathijs van de Nes <git@mathijs.vd-nes.nl>",
"Marli Frost <marli@frost.red>",
"Ryan Levick <ryan.levick@gmail.com>",
]
description = """
Library to support the reading and writing of zip files.
"""
readme = "README.md"
keywords = [
"zip",
"archive",
]
license = "MIT"
repository = "https://github.com/zip-rs/zip.git"
[[bench]]
name = "read_entry"
harness = false
[[bench]]
name = "read_metadata"
harness = false
[dependencies.aes]
version = "0.8.2"
optional = true
[dependencies.byteorder]
version = "1.4.3"
[dependencies.bzip2]
version = "0.4.3"
optional = true
[dependencies.constant_time_eq]
version = "0.1.5"
optional = true
[dependencies.crc32fast]
version = "1.3.2"
[dependencies.flate2]
version = "1.0.23"
optional = true
default-features = false
[dependencies.hmac]
version = "0.12.1"
features = ["reset"]
optional = true
[dependencies.pbkdf2]
version = "0.11.0"
optional = true
[dependencies.sha1]
version = "0.10.1"
optional = true
[dependencies.time]
version = "0.3.7"
features = ["std"]
optional = true
default-features = false
[dependencies.zstd]
version = "0.11.2"
optional = true
[dev-dependencies.bencher]
version = "0.1.5"
[dev-dependencies.getrandom]
version = "0.2.5"
[dev-dependencies.time]
version = "0.3.7"
features = [
"formatting",
"macros",
]
[dev-dependencies.walkdir]
version = "2.3.2"
[features]
aes-crypto = [
"aes",
"constant_time_eq",
"hmac",
"pbkdf2",
"sha1",
]
default = [
"aes-crypto",
"bzip2",
"deflate",
"time",
"zstd",
]
deflate = ["flate2/rust_backend"]
deflate-miniz = ["flate2/default"]
deflate-zlib = ["flate2/zlib"]
unreserved = []
[target."cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))".dependencies.crossbeam-utils]
version = "0.8.8"
|