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