mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-24 10:07:03 +00:00
27 lines
865 B
TOML
27 lines
865 B
TOML
[package]
|
|
name = "rustc_public"
|
|
version = "0.1.0-preview"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
# tidy-alphabetical-start
|
|
rustc_abi = { path = "../rustc_abi" }
|
|
rustc_hir = { path = "../rustc_hir" }
|
|
rustc_middle = { path = "../rustc_middle" }
|
|
rustc_public_bridge = { path = "../rustc_public_bridge" }
|
|
rustc_session = { path = "../rustc_session" }
|
|
rustc_span = { path = "../rustc_span" }
|
|
rustc_target = { path = "../rustc_target" }
|
|
scoped-tls.workspace = true
|
|
serde = { version = "1.0.125", features = [ "derive" ] }
|
|
tracing.workspace = true
|
|
# tidy-alphabetical-end
|
|
|
|
[features]
|
|
# tidy-alphabetical-start
|
|
# Provides access to APIs that expose internals of the rust compiler.
|
|
# APIs enabled by this feature are unstable. They can be removed or modified
|
|
# at any point and they are not included in the crate's semantic versioning.
|
|
rustc_internal = []
|
|
# tidy-alphabetical-end
|