]> git.lizzy.rs Git - rust.git/blob - src/libsyntax/Cargo.toml
update scoped_tls to 1.0
[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 crate-type = ["dylib"]
11
12 [dependencies]
13 bitflags = "1.0"
14 serialize = { path = "../libserialize" }
15 log = "0.4"
16 scoped-tls = "1.0"
17 syntax_pos = { path = "../libsyntax_pos" }
18 errors = { path = "../librustc_errors", package = "rustc_errors" }
19 rustc_data_structures = { path = "../librustc_data_structures" }
20 rustc_target = { path = "../librustc_target" }
21 smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }