]> git.lizzy.rs Git - rust.git/blob - src/librustc_symbol_mangling/Cargo.toml
Rollup merge of #75485 - RalfJung:pin, r=nagisa
[rust.git] / src / librustc_symbol_mangling / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_symbol_mangling"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_symbol_mangling"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 tracing = "0.1"
14 punycode = "0.4.0"
15 rustc-demangle = "0.1.16"
16
17 rustc_ast = { path = "../librustc_ast" }
18 rustc_span = { path = "../librustc_span" }
19 rustc_middle = { path = "../librustc_middle" }
20 rustc_hir = { path = "../librustc_hir" }
21 rustc_target = { path = "../librustc_target" }
22 rustc_data_structures = { path = "../librustc_data_structures" }
23 rustc_session = { path = "../librustc_session" }