rust/compiler/rustc_symbol_mangling/Cargo.toml

21 lines
507 B
TOML
Raw Normal View History

2020-08-28 05:58:48 +02:00
[package]
name = "rustc_symbol_mangling"
version = "0.0.0"
2021-09-19 18:49:55 +02:00
edition = "2021"
2020-08-28 05:58:48 +02:00
[lib]
doctest = false
[dependencies]
tracing = "0.1"
punycode = "0.4.0"
2021-08-10 23:05:25 +02:00
rustc-demangle = "0.1.21"
2020-08-28 05:58:48 +02:00
rustc_span = { path = "../rustc_span" }
rustc_middle = { path = "../rustc_middle" }
rustc_hir = { path = "../rustc_hir" }
rustc_target = { path = "../rustc_target" }
rustc_data_structures = { path = "../rustc_data_structures" }
2020-11-14 16:48:54 +01:00
rustc_query_system = { path = "../rustc_query_system" }
2020-08-28 05:58:48 +02:00
rustc_session = { path = "../rustc_session" }