rust/compiler/rustc_passes/Cargo.toml

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

24 lines
813 B
TOML
Raw Normal View History

2020-08-27 22:58:48 -05:00
[package]
name = "rustc_passes"
version = "0.0.0"
2021-09-19 11:49:55 -05:00
edition = "2021"
2020-08-27 22:58:48 -05:00
[dependencies]
tracing = "0.1"
rustc_middle = { path = "../rustc_middle" }
rustc_attr = { path = "../rustc_attr" }
rustc_data_structures = { path = "../rustc_data_structures" }
rustc_errors = { path = "../rustc_errors" }
rustc_expand = { path = "../rustc_expand" }
2020-08-27 22:58:48 -05:00
rustc_hir = { path = "../rustc_hir" }
rustc_index = { path = "../rustc_index" }
rustc_parse = { path = "../rustc_parse" }
2020-08-27 22:58:48 -05:00
rustc_session = { path = "../rustc_session" }
rustc_target = { path = "../rustc_target" }
rustc_ast = { path = "../rustc_ast" }
rustc_serialize = { path = "../rustc_serialize" }
2020-08-27 22:58:48 -05:00
rustc_span = { path = "../rustc_span" }
rustc_lexer = { path = "../rustc_lexer" }
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
rustc_feature = { path = "../rustc_feature" }