diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-15 03:34:42 +0000 |
commit | da4c7e7ed675c3bf405668739c3012d140856109 (patch) | |
tree | cdd868dba063fecba609a1d819de271f0d51b23e /build/rust/goblin | |
parent | Adding upstream version 125.0.3. (diff) | |
download | firefox-da4c7e7ed675c3bf405668739c3012d140856109.tar.xz firefox-da4c7e7ed675c3bf405668739c3012d140856109.zip |
Adding upstream version 126.0.upstream/126.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/rust/goblin')
-rw-r--r-- | build/rust/goblin/Cargo.toml | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/build/rust/goblin/Cargo.toml b/build/rust/goblin/Cargo.toml index 52e8dfe66d..4b6ea811e9 100644 --- a/build/rust/goblin/Cargo.toml +++ b/build/rust/goblin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "goblin" -version = "0.6.999" +version = "0.7.999" edition = "2018" license = "MIT/Apache-2.0" @@ -8,4 +8,19 @@ license = "MIT/Apache-2.0" path = "lib.rs" [dependencies.goblin] -version = "0.7.0" +version = "0.8.0" + +default-features = false + +[features] +alloc = ["goblin/alloc"] +archive = ["goblin/archive"] +default = ["goblin/default"] +elf32 = ["goblin/elf32"] +elf64 = ["goblin/elf64"] +endian_fd = ["goblin/endian_fd"] +mach32 = ["goblin/mach32"] +mach64 = ["goblin/mach64"] +pe32 = ["goblin/pe32"] +pe64 = ["goblin/pe64"] +std = ["goblin/std"] |