]> git.lizzy.rs Git - rust.git/blob - src/librustc_plugin_impl/lib.rs
Rollup merge of #66719 - Mark-Simulacrum:int-normalization, r=Centril
[rust.git] / src / librustc_plugin_impl / lib.rs
1 //! Infrastructure for compiler plugins.
2 //!
3 //! Plugins are a deprecated way to extend the behavior of `rustc` in various ways.
4 //!
5 //! See the [`plugin`
6 //! feature](https://doc.rust-lang.org/nightly/unstable-book/language-features/plugin.html)
7 //! of the Unstable Book for some examples.
8
9 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
10
11 #![feature(nll)]
12
13 #![recursion_limit="256"]
14
15 pub use registry::Registry;
16
17 pub mod registry;
18 pub mod load;
19 pub mod build;