forked from m4b/goblin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (54 loc) · 1.43 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "goblin"
version = "0.9.2"
authors = [
"m4b <[email protected]>",
"seu <[email protected]>",
"Will Glynn <[email protected]>",
"Philip Craig <[email protected]>",
"Lzu Tao <[email protected]>",
]
categories = ["parsing", "development-tools::debugging"]
documentation = "https://docs.rs/goblin"
edition = "2021"
rust-version = "1.63.0"
include = [
"src",
"CHANGELOG.md",
"Cargo.toml",
"LICENSE",
"README.md",
]
keywords = ["binary", "elf", "mach", "pe", "archive"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/m4b/goblin"
description = "An impish, cross-platform, ELF, Mach-o, and PE binary parsing and loading crate"
[dependencies]
plain = "0.2.3"
[dependencies.log]
version = "0.4"
default-features = false
optional = true
[dependencies.scroll]
version = "0.12"
default-features = false
[features]
default = ["std", "elf32", "elf64", "mach32", "mach64", "pe32", "pe64", "te", "archive", "endian_fd"]
std = ["alloc", "scroll/std"]
alloc = ["scroll/derive", "log"]
endian_fd = ["alloc"]
elf32 = []
elf64 = []
# for now we will require mach and pe to be alloc + endian_fd
mach32 = ["alloc", "endian_fd", "archive"]
mach64 = ["alloc", "endian_fd", "archive"]
pe32 = ["alloc", "endian_fd"]
pe64 = ["alloc", "endian_fd"]
te = ["alloc", "endian_fd"]
archive = ["alloc"]
[badges.travis-ci]
branch = "master"
repository = "m4b/goblin"
[dev-dependencies]
stderrlog = "0.5.4"