1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13name = "rustc-demangle" 14version = "0.1.24" 15authors = ["Alex Crichton <alex@alexcrichton.com>"] 16build = false 17autobins = false 18autoexamples = false 19autotests = false 20autobenches = false 21description = """ 22Rust compiler symbol demangling. 23""" 24homepage = "https://github.com/rust-lang/rustc-demangle" 25documentation = "https://docs.rs/rustc-demangle" 26readme = "README.md" 27license = "MIT/Apache-2.0" 28repository = "https://github.com/rust-lang/rustc-demangle" 29 30[package.metadata.docs.rs] 31features = ["std"] 32rustdoc-args = [ 33 "--cfg", 34 "docsrs", 35] 36 37[profile.release] 38lto = true 39 40[lib] 41name = "rustc_demangle" 42path = "src/lib.rs" 43 44[dependencies.compiler_builtins] 45version = "0.1.2" 46optional = true 47 48[dependencies.core] 49version = "1.0.0" 50optional = true 51package = "rustc-std-workspace-core" 52 53[features] 54rustc-dep-of-std = [ 55 "core", 56 "compiler_builtins", 57] 58std = [] 59