rust/compiler/rustc_privacy/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
552 B
TOML
Raw Normal View History

2020-08-28 03:58:48 +00:00
[package]
name = "rustc_privacy"
version = "0.0.0"
2021-09-19 16:49:55 +00:00
edition = "2021"
2020-08-28 03:58:48 +00:00
[dependencies]
2021-07-31 06:50:57 +00:00
rustc_ast = { path = "../rustc_ast" }
2020-08-28 03:58:48 +00:00
rustc_attr = { path = "../rustc_attr" }
rustc_data_structures = { path = "../rustc_data_structures" }
2020-08-28 03:58:48 +00:00
rustc_errors = { path = "../rustc_errors" }
rustc_hir = { path = "../rustc_hir" }
rustc_macros = { path = "../rustc_macros" }
rustc_middle = { path = "../rustc_middle" }
2020-08-28 03:58:48 +00:00
rustc_session = { path = "../rustc_session" }
rustc_span = { path = "../rustc_span" }
2022-09-26 11:00:29 +00:00
rustc_hir_analysis = { path = "../rustc_hir_analysis" }
2020-08-28 03:58:48 +00:00
tracing = "0.1"