]> git.proxmox.com Git - rustc.git/blame - vendor/object-0.30.3/Cargo.toml
New upstream version 1.71.1+dfsg1
[rustc.git] / vendor / object-0.30.3 / Cargo.toml
CommitLineData
9c376795
FG
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]
13edition = "2018"
14name = "object"
49aad941 15version = "0.30.3"
9c376795
FG
16exclude = [
17 "/.github",
18 "/testfiles",
19]
20description = "A unified interface for reading and writing object file formats."
49aad941 21readme = "README.md"
9c376795
FG
22keywords = [
23 "object",
24 "elf",
25 "mach-o",
26 "pe",
27 "coff",
28]
29license = "Apache-2.0 OR MIT"
30repository = "https://github.com/gimli-rs/object"
49aad941 31resolver = "2"
9c376795
FG
32
33[package.metadata.docs.rs]
34features = ["doc"]
35
36[dependencies.alloc]
37version = "1.0.0"
38optional = true
39package = "rustc-std-workspace-alloc"
40
41[dependencies.compiler_builtins]
42version = "0.1.2"
43optional = true
44
45[dependencies.core]
46version = "1.0.0"
47optional = true
48package = "rustc-std-workspace-core"
49
50[dependencies.crc32fast]
51version = "1.2"
52optional = true
53default-features = false
54
55[dependencies.flate2]
56version = "1"
57optional = true
58
59[dependencies.hashbrown]
49aad941 60version = "0.13.1"
9c376795
FG
61features = ["ahash"]
62optional = true
63default-features = false
64
65[dependencies.indexmap]
66version = "1.6"
67optional = true
68
69[dependencies.memchr]
70version = "2.4.1"
71default-features = false
72
73[dependencies.wasmparser]
74version = "0.57"
75optional = true
76
77[features]
78all = [
79 "read",
80 "write",
81 "std",
82 "compression",
83 "wasm",
84]
85archive = []
86cargo-all = []
87coff = []
88compression = [
89 "flate2",
90 "std",
91]
92default = [
93 "read",
94 "compression",
95]
96doc = [
97 "read_core",
98 "write_std",
99 "std",
100 "compression",
101 "archive",
102 "coff",
103 "elf",
104 "macho",
105 "pe",
106 "wasm",
107]
108elf = []
109macho = []
110pe = ["coff"]
111read = [
112 "read_core",
113 "archive",
114 "coff",
115 "elf",
116 "macho",
117 "pe",
118 "unaligned",
119]
120read_core = []
121rustc-dep-of-std = [
122 "core",
123 "compiler_builtins",
124 "alloc",
125 "memchr/rustc-dep-of-std",
126]
127std = ["memchr/std"]
128unaligned = []
49aad941
FG
129unstable = []
130unstable-all = [
131 "all",
132 "unstable",
133 "xcoff",
134]
9c376795
FG
135wasm = ["wasmparser"]
136write = [
137 "write_std",
138 "coff",
139 "elf",
140 "macho",
141 "pe",
142]
143write_core = [
144 "crc32fast",
145 "indexmap",
146 "hashbrown",
147]
148write_std = [
149 "write_core",
150 "std",
151 "indexmap/std",
152 "crc32fast/std",
153]
49aad941 154xcoff = []