]> git.lizzy.rs Git - rust.git/blob - src/libsyntax_expand/Cargo.toml
Merge branch 'master' into rusty-hermit
[rust.git] / src / libsyntax_expand / Cargo.toml
1 [package]
2 authors = ["The Rust Project Developers"]
3 name = "syntax_expand"
4 version = "0.0.0"
5 edition = "2018"
6 build = false
7
8 [lib]
9 name = "syntax_expand"
10 path = "lib.rs"
11 doctest = false
12
13 [dependencies]
14 bitflags = "1.0"
15 rustc_serialize = { path = "../libserialize", package = "serialize" }
16 log = "0.4"
17 scoped-tls = "1.0"
18 lazy_static = "1.0.0"
19 syntax_pos = { path = "../libsyntax_pos" }
20 errors = { path = "../librustc_errors", package = "rustc_errors" }
21 rustc_data_structures = { path = "../librustc_data_structures" }
22 rustc_index = { path = "../librustc_index" }
23 rustc_lexer = { path = "../librustc_lexer" }
24 rustc_target = { path = "../librustc_target" }
25 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
26 syntax = { path = "../libsyntax" }