]> git.lizzy.rs Git - rust.git/blob - src/librustc_metadata/Cargo.toml
5bc047e001b67c37e141d42861eaba202eb56f14
[rust.git] / src / librustc_metadata / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "rustc_metadata"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "rustc_metadata"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 flate2 = "1.0"
14 log = "0.4"
15 memmap = "0.6"
16 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
17 rustc = { path = "../librustc" }
18 rustc_data_structures = { path = "../librustc_data_structures" }
19 errors = { path = "../librustc_errors", package = "rustc_errors" }
20 rustc_target = { path = "../librustc_target" }
21 rustc_index = { path = "../librustc_index" }
22 rustc_serialize = { path = "../libserialize", package = "serialize" }
23 stable_deref_trait = "1.0.0"
24 syntax = { path = "../libsyntax" }
25 syntax_expand = { path = "../libsyntax_expand" }
26 syntax_pos = { path = "../libsyntax_pos" }