]> git.lizzy.rs Git - rust.git/blob - src/librustc_middle/Cargo.toml
Update chalk and add LifetimeOutlives and ObjectSafe lowering
[rust.git] / src / librustc_middle / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_middle"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_middle"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 rustc_arena = { path = "../librustc_arena" }
14 bitflags = "1.2.1"
15 scoped-tls = "1.0"
16 log = { version = "0.4", features = ["release_max_level_info", "std"] }
17 rustc-rayon-core = "0.3.0"
18 polonius-engine = "0.12.0"
19 rustc_apfloat = { path = "../librustc_apfloat" }
20 rustc_attr = { path = "../librustc_attr" }
21 rustc_feature = { path = "../librustc_feature" }
22 rustc_hir = { path = "../librustc_hir" }
23 rustc_target = { path = "../librustc_target" }
24 rustc_macros = { path = "../librustc_macros" }
25 rustc_data_structures = { path = "../librustc_data_structures" }
26 rustc_query_system = { path = "../librustc_query_system" }
27 rustc_errors = { path = "../librustc_errors" }
28 rustc_index = { path = "../librustc_index" }
29 rustc_serialize = { path = "../librustc_serialize" }
30 rustc_ast = { path = "../librustc_ast" }
31 rustc_span = { path = "../librustc_span" }
32 byteorder = { version = "1.3" }
33 chalk-ir =      { git = "https://github.com/rust-lang/chalk.git", rev = "ea1ca4ddc43abcfed77420f294a3713fac714e18" }
34 #chalk-ir = "0.10.0"
35 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
36 measureme = "0.7.1"
37 rustc_session = { path = "../librustc_session" }