1[package]
2name = "rustc-demangle"
3version = "0.1.24"
4authors = ["Alex Crichton <alex@alexcrichton.com>"]
5license = "MIT/Apache-2.0"
6readme = "README.md"
7repository = "https://github.com/rust-lang/rustc-demangle"
8homepage = "https://github.com/rust-lang/rustc-demangle"
9documentation = "https://docs.rs/rustc-demangle"
10description = """
11Rust compiler symbol demangling.
12"""
13
14[workspace]
15members = ["crates/capi", "fuzz"]
16
17[dependencies]
18core = { version = '1.0.0', optional = true, package = 'rustc-std-workspace-core' }
19compiler_builtins = { version = '0.1.2', optional = true }
20
21[features]
22rustc-dep-of-std = ['core', 'compiler_builtins']
23std = []
24
25[profile.release]
26lto = true
27
28[package.metadata.docs.rs]
29features = ["std"]
30rustdoc-args = ["--cfg", "docsrs"]
31