Files
rust/src/librustc_plugin_impl/lib.rs

20 lines
476 B
Rust
Raw Normal View History

//! Infrastructure for compiler plugins.
//!
//! Plugins are a deprecated way to extend the behavior of `rustc` in various ways.
//!
2019-04-20 15:45:47 +08:00
//! See the [`plugin`
//! feature](https://doc.rust-lang.org/nightly/unstable-book/language-features/plugin.html)
//! of the Unstable Book for some examples.
2014-05-26 14:48:54 -07:00
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
2019-02-10 16:13:30 +09:00
#![feature(nll)]
2018-12-13 16:57:25 +01:00
#![recursion_limit="256"]
2019-02-06 23:56:39 +09:00
pub use registry::Registry;
2014-05-26 14:48:54 -07:00
pub mod registry;
pub mod load;
pub mod build;