2020-08-27 22:58:48 -05:00
|
|
|
[package]
|
|
|
|
name = "rustc_ast"
|
|
|
|
version = "0.0.0"
|
2021-09-19 11:49:55 -05:00
|
|
|
edition = "2021"
|
2020-08-27 22:58:48 -05:00
|
|
|
|
|
|
|
[dependencies]
|
2024-02-06 16:26:16 -06:00
|
|
|
# FIXME: bumping memchr to 2.7.1 causes linker errors in MSVC thin-lto
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-start
|
2023-12-30 10:09:02 -06:00
|
|
|
bitflags = "2.4.1"
|
2024-02-06 16:26:16 -06:00
|
|
|
memchr = "=2.5.0"
|
2024-02-27 12:11:23 -06:00
|
|
|
rustc_ast_ir = { path = "../rustc_ast_ir" }
|
2020-08-27 22:58:48 -05:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures" }
|
|
|
|
rustc_index = { path = "../rustc_index" }
|
|
|
|
rustc_lexer = { path = "../rustc_lexer" }
|
|
|
|
rustc_macros = { path = "../rustc_macros" }
|
2022-08-16 23:22:30 -05:00
|
|
|
rustc_serialize = { path = "../rustc_serialize" }
|
|
|
|
rustc_span = { path = "../rustc_span" }
|
2022-06-26 17:48:55 -05:00
|
|
|
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
|
2022-12-05 17:19:32 -06:00
|
|
|
thin-vec = "0.2.12"
|
2022-08-16 23:22:30 -05:00
|
|
|
tracing = "0.1"
|
2023-10-19 21:37:29 -05:00
|
|
|
# tidy-alphabetical-end
|