1[package]
2name = "rustc-demangle"
3version = "0.1.26"
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' }
19
20[features]
21rustc-dep-of-std = ['core']
22std = []
23# Deprecated: `compiler_builtins` used to be a dependency and was enabled by
24# some downstream users, but it is no longer needed. This feature should be
25# removed in a future release.
26compiler_builtins = []
27
28[profile.release]
29#lto = true
30
31[package.metadata.docs.rs]
32features = ["std"]
33rustdoc-args = ["--cfg", "docsrs"]
34