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