forked from gimli-rs/cpp_demangle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (47 loc) · 1.49 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
[package]
authors = ["Nick Fitzgerald <[email protected]>", "Jim Blandy <[email protected]>", "Kyle Huey <[email protected]>"]
build = "build.rs"
categories = ["development-tools::debugging", "development-tools::ffi"]
description = "A crate for demangling C++ symbols"
documentation = "https://docs.rs/cpp_demangle"
exclude = ["tests/**", "in/**"]
keywords = ["demangle", "symbolicate", "c-plus-plus", "itanium"]
license = "MIT OR Apache-2.0"
name = "cpp_demangle"
readme = "./README.md"
repository = "https://github.com/gimli-rs/cpp_demangle"
version = "0.4.4"
edition = "2018"
[[bin]]
name = "afl_runner"
path = "src/bin/afl_runner.rs"
required-features = ["afl"]
[dependencies]
cfg-if = "1.0.0"
[dependencies.afl]
optional = true
version = "0.15"
[dev-dependencies]
clap = { version = "4.0", features = ["derive"] }
diff = "0.1.11"
[features]
# Default features.
default = ["std"]
# Build using the `std` library. Disabling this enables `no_std` support.
std = ["alloc"]
# Use collections from the `alloc` crate rather than from `std`.
alloc = []
# Enable copious amounts of logging. This is for internal use only, and is only
# useful for hacking on `cpp_demangle` itself.
logging = ["std"]
# Run all libiberty tests, even the ones that are known not to pass yet. This is
# for internal use only.
run_libiberty_tests = []
# Enable fuzzing support. This is for internal use only.
fuzz = ["afl"]
[profile.release]
debug = true
[[example]]
name = "simple"
path = "examples/simple.rs"
required-features = ["std"]