Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
507 B
TOML
Raw Normal View History

2020-08-27 22:58:48 -05:00
[package]
name = "rustc_symbol_mangling"
version = "0.0.0"
2021-09-19 12:49:55 -04:00
edition = "2021"
2020-08-27 22:58:48 -05:00
[lib]
doctest = false
[dependencies]
tracing = "0.1"
punycode = "0.4.0"
2021-08-11 00:05:25 +03:00
rustc-demangle = "0.1.21"
2020-08-27 22:58:48 -05: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-27 22:58:48 -05:00
rustc_session = { path = "../rustc_session" }