forked from gimli-rs/gimli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (37 loc) · 1.31 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
[package]
authors = ["Nick Fitzgerald <[email protected]>", "Philip Craig <[email protected]>"]
categories = ["development-tools::debugging", "development-tools::profiling", "parser-implementations"]
description = "A blazing fast DWARF debugging format parser."
documentation = "https://docs.rs/gimli"
keywords = ["DWARF", "debug", "ELF", "eh_frame"]
license = "Apache-2.0/MIT"
name = "gimli"
readme = "./README.md"
repository = "https://github.com/gimli-rs/gimli"
version = "0.16.1"
exclude = ["/ci/*", "/releases/*", "/.travis.yml"]
[badges]
travis-ci = { repository = "gimli-rs/gimli" }
coveralls = { repository = "gimli-rs/gimli" }
[dependencies]
arrayvec = { version = "0.4.6", default-features = false }
byteorder = { version = "1.0", default-features = false }
fallible-iterator = { version = "0.1.4", default-features = false }
indexmap = { version = "1.0", optional = true }
stable_deref_trait = { version = "1.1.0", default-features = false }
[dev-dependencies]
crossbeam = "0.4.1"
getopts = "0.2"
memmap = "0.7"
num_cpus = "1"
object = "0.11"
rayon = "1.0"
regex = "1"
test-assembler = "0.1.3"
typed-arena = "1"
[features]
read = []
write = ["std", "indexmap"]
std = ["fallible-iterator/std", "stable_deref_trait/std"]
alloc = ["fallible-iterator/alloc", "stable_deref_trait/alloc"]
default = ["read", "write", "std"]