2023-12-10 19:42:30 +00:00
|
|
|
[package]
|
|
|
|
name = "rustc_pattern_analysis"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
# tidy-alphabetical-start
|
2023-12-19 17:09:31 +00:00
|
|
|
derivative = "2.2.0"
|
2023-12-10 19:42:30 +00:00
|
|
|
rustc_apfloat = "0.2.0"
|
2023-12-11 20:56:17 +00:00
|
|
|
rustc_arena = { path = "../rustc_arena", optional = true }
|
2023-12-11 19:59:32 +00:00
|
|
|
rustc_data_structures = { path = "../rustc_data_structures", optional = true }
|
2023-12-11 19:46:35 +00: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 20:56:17 +00:00
|
|
|
rustc_index = { path = "../rustc_index", default-features = false }
|
2023-12-11 19:46:35 +00: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 }
|
|
|
|
rustc_target = { path = "../rustc_target", optional = true }
|
2023-12-11 20:56:17 +00:00
|
|
|
smallvec = { version = "1.8.1", features = ["union"] }
|
2023-12-10 19:42:30 +00:00
|
|
|
tracing = "0.1"
|
|
|
|
# tidy-alphabetical-end
|
2023-12-11 19:46:35 +00:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["rustc"]
|
|
|
|
rustc = [
|
2023-12-11 20:56:17 +00:00
|
|
|
"dep:rustc_arena",
|
2023-12-11 19:59:32 +00:00
|
|
|
"dep:rustc_data_structures",
|
2023-12-11 19:46:35 +00:00
|
|
|
"dep:rustc_errors",
|
|
|
|
"dep:rustc_fluent_macro",
|
|
|
|
"dep:rustc_hir",
|
|
|
|
"dep:rustc_macros",
|
|
|
|
"dep:rustc_middle",
|
|
|
|
"dep:rustc_session",
|
|
|
|
"dep:rustc_span",
|
|
|
|
"dep:rustc_target",
|
2023-12-11 20:56:17 +00:00
|
|
|
"smallvec/may_dangle",
|
|
|
|
"rustc_index/nightly",
|
|
|
|
]
|