1[package] 2name = "rustc_plugin_impl" 3version = "0.0.0" 4build = false 5edition = "2021" 6 7[lib] 8 9[dependencies] 10libloading = "0.7.1" 11rustc_errors = { path = "../rustc_errors" } 12rustc_lint = { path = "../rustc_lint" } 13rustc_macros = { path = "../rustc_macros" } 14rustc_metadata = { path = "../rustc_metadata" } 15rustc_fluent_macro = { path = "../rustc_fluent_macro" } 16rustc_ast = { path = "../rustc_ast" } 17rustc_session = { path = "../rustc_session" } 18rustc_span = { path = "../rustc_span" } 19