]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/Cargo.toml
Simplify Cache wrapper to single type, impl Deref on it, fix all compilation errors...
[rust.git] / src / libsyntax / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "syntax"
4 version = "0.0.0"
5 edition = "2018"
6
7 [lib]
8 name = "syntax"
9 path = "lib.rs"
10 doctest = false
11
12 [dependencies]
13 bitflags = "1.2.1"
14 rustc_serialize = { path = "../libserialize", package = "serialize" }
15 log = "0.4"
16 scoped-tls = "1.0"
17 lazy_static = "1.0.0"
18 syntax_pos = { path = "../libsyntax_pos" }
19 errors = { path = "../librustc_errors", package = "rustc_errors" }
20 rustc_data_structures = { path = "../librustc_data_structures" }
21 rustc_feature = { path = "../librustc_feature" }
22 rustc_index = { path = "../librustc_index" }
23 rustc_lexer = { path = "../librustc_lexer" }
24 rustc_macros = { path = "../librustc_macros" }
25 smallvec = { version = "1.0", features = ["union", "may_dangle"] }
26 rustc_error_codes = { path = "../librustc_error_codes" }