]> git.lizzy.rs Git - rust.git/blob - src/librustc_builtin_macros/Cargo.toml
Rollup merge of #68050 - Centril:canon-error, r=Mark-Simulacrum
[rust.git] / src / librustc_builtin_macros / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_builtin_macros"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_builtin_macros"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 fmt_macros = { path = "../libfmt_macros" }
14 log = "0.4"
15 rustc_data_structures = { path = "../librustc_data_structures" }
16 rustc_errors = { path = "../librustc_errors" }
17 rustc_feature = { path = "../librustc_feature" }
18 rustc_parse = { path = "../librustc_parse" }
19 rustc_target = { path = "../librustc_target" }
20 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
21 syntax = { path = "../libsyntax" }
22 rustc_expand = { path = "../librustc_expand" }
23 rustc_span = { path = "../librustc_span" }
24 rustc_error_codes = { path = "../librustc_error_codes" }