-
Notifications
You must be signed in to change notification settings - Fork 26
/
Cargo.toml
27 lines (25 loc) · 847 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
[package]
name = "faerie"
version = "0.16.0"
authors = ["m4b <[email protected]>", "Dan Gohman <[email protected]>", "Pat Hickey <[email protected]>", "Philip Craig <[email protected]>", "bjorn3 <[email protected]>"]
readme = "README.md"
keywords = ["elf", "mach-o", "binary", "object", "compiler"]
repository = "https://github.com/m4b/faerie"
license = "MIT"
description = "ELF and Mach-o native binary object file emitter"
documentation = "https://docs.rs/faerie"
categories = ["development-tools::debugging"]
include = ["src/**/*", "Cargo.toml", "LICENSE", "README.md", "tests/*"]
edition = "2018"
[dependencies]
goblin = "0.6"
scroll = "0.11"
log = "0.4"
indexmap = "1"
string-interner = "0.12"
target-lexicon = "0.12"
thiserror = "1.0"
[dev-dependencies]
anyhow = "1.0"
env_logger = "0.10"
structopt = "0.3"