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 <fitzgen@gmail.com>", "Jim Blandy <jimb@red-bean.com>", "Kyle Huey <khuey@kylehuey.com>"]
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.0"
edition = "2018"
[badges]
[badges.travis-ci]
repository = "gimli-rs/cpp_demangle"
[[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.12.0"
[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
|