-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathCargo.toml
41 lines (36 loc) · 846 Bytes
/
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
[package]
authors = ["Flier Lu <[email protected]>"]
description = "Mach-O File Format Parser for Rust"
documentation = "http://flier.github.io/rust-macho/"
edition = "2018"
homepage = "http://flier.github.io/rust-macho/"
license = "Apache-2.0"
name = "mach_object"
repository = "https://github.com/flier/rust-macho"
version = "0.1.17"
[features]
default = ["display"]
display = ["time"]
integration_tests = []
[dependencies]
bitflags = "1.0"
byteorder = "1.3"
lazy_static = "1.0"
libc = "0.2"
log = "0.4"
thiserror = "1.0"
uuid = "1.1"
time = {version = "0.3", features = ["formatting", "macros"], optional = true}
[dev-dependencies]
anyhow = "1.0"
diff = "0.1"
hexplay = "0.2"
memmap = "0.7"
pretty_env_logger = "0.4"
structopt = "0.3"
walkdir = "2.2"
[lib]
name = "mach_object"
[[example]]
name = "otool"
required-features = ["display"]