]> git.lizzy.rs Git - rust.git/blob - src/librustc_attr/Cargo.toml
Auto merge of #73316 - Dylan-DPC:rollup-zgouwou, r=Dylan-DPC
[rust.git] / src / librustc_attr / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_attr"
4 version = "0.0.0"
5 edition = "2018"
6 build = "build.rs"
7
8 [lib]
9 name = "rustc_attr"
10 path = "lib.rs"
11 doctest = false
12
13 [dependencies]
14 rustc_ast_pretty = { path = "../librustc_ast_pretty" }
15 rustc_serialize = { path = "../librustc_serialize" }
16 rustc_errors = { path = "../librustc_errors" }
17 rustc_span = { path = "../librustc_span" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 rustc_feature = { path = "../librustc_feature" }
20 rustc_macros = { path = "../librustc_macros" }
21 rustc_session = { path = "../librustc_session" }
22 rustc_ast = { path = "../librustc_ast" }
23 version_check = "0.9"