1[package] 2name = "rustc-demangle" 3version = "0.1.21" 4authors = ["Alex Crichton <alex@alexcrichton.com>"] 5license = "MIT/Apache-2.0" 6readme = "README.md" 7repository = "https://github.com/alexcrichton/rustc-demangle" 8homepage = "https://github.com/alexcrichton/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'] 23 24[profile.release] 25lto = true 26