]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_hir_analysis/Cargo.toml
Rollup merge of #107706 - tgross35:atomic-as-mut-ptr, r=m-ou-se
[rust.git] / compiler / rustc_hir_analysis / Cargo.toml
1 [package]
2 name = "rustc_hir_analysis"
3 version = "0.0.0"
4 edition = "2021"
5
6 [lib]
7 test = false
8 doctest = false
9
10 [dependencies]
11 rustc_arena = { path = "../rustc_arena" }
12 tracing = "0.1"
13 rustc_macros = { path = "../rustc_macros" }
14 rustc_middle = { path = "../rustc_middle" }
15 rustc_attr = { path = "../rustc_attr" }
16 rustc_data_structures = { path = "../rustc_data_structures" }
17 rustc_errors = { path = "../rustc_errors" }
18 rustc_hir = { path = "../rustc_hir" }
19 rustc_target = { path = "../rustc_target" }
20 rustc_session = { path = "../rustc_session" }
21 smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
22 rustc_ast = { path = "../rustc_ast" }
23 rustc_span = { path = "../rustc_span" }
24 rustc_index = { path = "../rustc_index" }
25 rustc_infer = { path = "../rustc_infer" }
26 rustc_trait_selection = { path = "../rustc_trait_selection" }
27 rustc_lint = { path = "../rustc_lint" }
28 rustc_type_ir = { path = "../rustc_type_ir" }
29 rustc_feature = { path = "../rustc_feature" }