diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-18 02:49:50 +0000 |
commit | 9835e2ae736235810b4ea1c162ca5e65c547e770 (patch) | |
tree | 3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/object-0.29.0/Cargo.toml | |
parent | Releasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff) | |
download | rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip |
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/object-0.29.0/Cargo.toml')
-rw-r--r-- | vendor/object-0.29.0/Cargo.toml | 145 |
1 files changed, 0 insertions, 145 deletions
diff --git a/vendor/object-0.29.0/Cargo.toml b/vendor/object-0.29.0/Cargo.toml deleted file mode 100644 index a94180ee1..000000000 --- a/vendor/object-0.29.0/Cargo.toml +++ /dev/null @@ -1,145 +0,0 @@ -# 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 = "2018" -name = "object" -version = "0.29.0" -exclude = [ - "/.github", - "/testfiles", -] -description = "A unified interface for reading and writing object file formats." -keywords = [ - "object", - "elf", - "mach-o", - "pe", - "coff", -] -license = "Apache-2.0 OR MIT" -repository = "https://github.com/gimli-rs/object" - -[package.metadata.docs.rs] -features = ["doc"] - -[dependencies.alloc] -version = "1.0.0" -optional = true -package = "rustc-std-workspace-alloc" - -[dependencies.compiler_builtins] -version = "0.1.2" -optional = true - -[dependencies.core] -version = "1.0.0" -optional = true -package = "rustc-std-workspace-core" - -[dependencies.crc32fast] -version = "1.2" -optional = true -default-features = false - -[dependencies.flate2] -version = "1" -optional = true - -[dependencies.hashbrown] -version = "0.12.0" -features = ["ahash"] -optional = true -default-features = false - -[dependencies.indexmap] -version = "1.6" -optional = true - -[dependencies.memchr] -version = "2.4.1" -default-features = false - -[dependencies.wasmparser] -version = "0.57" -optional = true - -[features] -all = [ - "read", - "write", - "std", - "compression", - "wasm", -] -archive = [] -cargo-all = [] -coff = [] -compression = [ - "flate2", - "std", -] -default = [ - "read", - "compression", -] -doc = [ - "read_core", - "write_std", - "std", - "compression", - "archive", - "coff", - "elf", - "macho", - "pe", - "wasm", -] -elf = [] -macho = [] -pe = ["coff"] -read = [ - "read_core", - "archive", - "coff", - "elf", - "macho", - "pe", - "unaligned", -] -read_core = [] -rustc-dep-of-std = [ - "core", - "compiler_builtins", - "alloc", - "memchr/rustc-dep-of-std", -] -std = ["memchr/std"] -unaligned = [] -wasm = ["wasmparser"] -write = [ - "write_std", - "coff", - "elf", - "macho", - "pe", -] -write_core = [ - "crc32fast", - "indexmap", - "hashbrown", -] -write_std = [ - "write_core", - "std", - "indexmap/std", - "crc32fast/std", -] |