2023-12-10 13:42:30 -06:00
|
|
|
[package]
|
|
|
|
name = "rustc_pattern_analysis"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# tidy-alphabetical-start
|
2024-08-24 17:31:10 -05:00
|
|
|
rustc-hash = "2.0.0"
|
2024-10-27 22:38:33 -05:00
|
|
|
|
|
|
|
rustc_abi = { path = "../rustc_abi", optional = true }
|
2023-12-10 13:42:30 -06:00
|
|
|
rustc_apfloat = "0.2.0"
|
2023-12-11 14:56:17 -06:00
|
|
|
rustc_arena = { path = "../rustc_arena", optional = true }
|
2023-12-11 13:59:32 -06:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
|
2023-12-11 13:46:35 -06:00
|
|
|
rustc_errors = { path = "../rustc_errors", optional = true }
|
|
|
|
rustc_fluent_macro = { path = "../rustc_fluent_macro", optional = true }
|
|
|
|
rustc_hir = { path = "../rustc_hir", optional = true }
|
2023-12-11 14:56:17 -06:00
|
|
|
rustc_index = { path = "../rustc_index", default-features = false }
|
2023-12-11 13:46:35 -06:00
|
|
|
rustc_macros = { path = "../rustc_macros", optional = true }
|
|
|
|
rustc_middle = { path = "../rustc_middle", optional = true }
|
|
|
|
rustc_session = { path = "../rustc_session", optional = true }
|
|
|
|
rustc_span = { path = "../rustc_span", optional = true }
|
2023-12-11 14:56:17 -06:00
|
|
|
smallvec = { version = "1.8.1", features = ["union"] }
|
2023-12-10 13:42:30 -06:00
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|
2023-12-11 13:46:35 -06:00
|
|
|
|
2024-03-04 09:57:32 -06:00
|
|
|
[dev-dependencies]
|
|
|
|
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["fmt", "env-filter", "ansi"] }
|
2024-03-30 09:39:43 -05:00
|
|
|
tracing-tree = "0.3.0"
|
2024-03-04 09:57:32 -06:00
|
|
|
|
2023-12-11 13:46:35 -06:00
|
|
|
[features]
|
|
|
|
default = ["rustc"]
|
|
|
|
rustc = [
|
2024-10-27 22:38:33 -05:00
|
|
|
"dep:rustc_abi",
|
2023-12-11 14:56:17 -06:00
|
|
|
"dep:rustc_arena",
|
2023-12-11 13:59:32 -06:00
|
|
|
"dep:rustc_data_structures",
|
2023-12-11 13:46:35 -06:00
|
|
|
"dep:rustc_errors",
|
|
|
|
"dep:rustc_fluent_macro",
|
|
|
|
"dep:rustc_hir",
|
|
|
|
"dep:rustc_macros",
|
|
|
|
"dep:rustc_middle",
|
|
|
|
"dep:rustc_session",
|
|
|
|
"dep:rustc_span",
|
2023-12-11 14:56:17 -06:00
|
|
|
"smallvec/may_dangle",
|
|
|
|
"rustc_index/nightly",
|
|
|
|
]
|