]> git.proxmox.com Git - rustc.git/blob - vendor/miniz_oxide/Cargo.toml
New upstream version 1.69.0+dfsg1
[rustc.git] / vendor / miniz_oxide / Cargo.toml
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2 #
3 # When uploading crates to the registry Cargo will automatically
4 # "normalize" Cargo.toml files for maximal compatibility
5 # with all versions of Cargo and also rewrite `path` dependencies
6 # to registry (e.g., crates.io) dependencies.
7 #
8 # If you are reading this file be aware that the original Cargo.toml
9 # will likely look very different (and much more reasonable).
10 # See Cargo.toml.orig for the original contents.
11
12 [package]
13 edition = "2018"
14 name = "miniz_oxide"
15 version = "0.6.2"
16 authors = [
17 "Frommi <daniil.liferenko@gmail.com>",
18 "oyvindln <oyvindln@users.noreply.github.com>",
19 ]
20 exclude = [
21 "benches/*",
22 "tests/*",
23 ]
24 description = "DEFLATE compression and decompression library rewritten in Rust based on miniz"
25 homepage = "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"
26 documentation = "https://docs.rs/miniz_oxide"
27 readme = "Readme.md"
28 keywords = [
29 "zlib",
30 "miniz",
31 "deflate",
32 "encoding",
33 ]
34 categories = ["compression"]
35 license = "MIT OR Zlib OR Apache-2.0"
36 repository = "https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide"
37
38 [lib]
39 name = "miniz_oxide"
40
41 [dependencies.adler]
42 version = "1.0"
43 default-features = false
44
45 [dependencies.alloc]
46 version = "1.0.0"
47 optional = true
48 package = "rustc-std-workspace-alloc"
49
50 [dependencies.compiler_builtins]
51 version = "0.1.2"
52 optional = true
53
54 [dependencies.core]
55 version = "1.0.0"
56 optional = true
57 package = "rustc-std-workspace-core"
58
59 [dependencies.simd-adler32]
60 version = "0.3"
61 optional = true
62 default-features = false
63
64 [features]
65 default = ["with-alloc"]
66 rustc-dep-of-std = [
67 "core",
68 "alloc",
69 "compiler_builtins",
70 "adler/rustc-dep-of-std",
71 ]
72 simd = ["simd-adler32"]
73 std = []
74 with-alloc = []