26 lines
482 B
TOML
26 lines
482 B
TOML
[package]
|
|
name = "goblin"
|
|
version = "0.8.999"
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies.goblin]
|
|
version = "0.9.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"]
|