]> git.proxmox.com Git - rustc.git/blob - vendor/object-0.27.1/Cargo.toml
New upstream version 1.59.0+dfsg1
[rustc.git] / vendor / object-0.27.1 / 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 believe there's an error in this file please file an
9 # issue against the rust-lang/cargo repository. If you're
10 # editing this file be aware that the upstream Cargo.toml
11 # will likely look very different (and much more reasonable)
12
13 [package]
14 edition = "2018"
15 name = "object"
16 version = "0.27.1"
17 exclude = ["/.github", "/testfiles"]
18 description = "A unified interface for reading and writing object file formats."
19 keywords = ["object", "elf", "mach-o", "pe", "coff"]
20 license = "Apache-2.0/MIT"
21 repository = "https://github.com/gimli-rs/object"
22 [package.metadata.docs.rs]
23 features = ["doc"]
24 [dependencies.alloc]
25 version = "1.0.0"
26 optional = true
27 package = "rustc-std-workspace-alloc"
28
29 [dependencies.compiler_builtins]
30 version = "0.1.2"
31 optional = true
32
33 [dependencies.core]
34 version = "1.0.0"
35 optional = true
36 package = "rustc-std-workspace-core"
37
38 [dependencies.crc32fast]
39 version = "1.2"
40 optional = true
41
42 [dependencies.flate2]
43 version = "1"
44 optional = true
45
46 [dependencies.indexmap]
47 version = "1.1"
48 optional = true
49
50 [dependencies.memchr]
51 version = "2.4.1"
52 default-features = false
53
54 [dependencies.wasmparser]
55 version = "0.57"
56 optional = true
57
58 [features]
59 all = ["read", "write", "std", "compression", "wasm"]
60 archive = []
61 cargo-all = []
62 coff = []
63 compression = ["flate2", "std"]
64 default = ["read", "compression"]
65 doc = ["read_core", "write_core", "std", "compression", "archive", "coff", "elf", "macho", "pe", "wasm"]
66 elf = []
67 macho = []
68 pe = ["coff"]
69 read = ["read_core", "archive", "coff", "elf", "macho", "pe", "unaligned"]
70 read_core = []
71 rustc-dep-of-std = ["core", "compiler_builtins", "alloc", "memchr/rustc-dep-of-std"]
72 std = ["memchr/std"]
73 unaligned = []
74 wasm = ["wasmparser"]
75 write = ["write_core", "coff", "elf", "macho", "pe"]
76 write_core = ["crc32fast", "indexmap/std", "std"]