# plugin_macros Macros to make plugins easier to make in Rust. ## Usage First of all, this needs to be in your `Cargo.toml`: ```toml plugin_macros = "~0.1" ``` The following features exist: * `fx` for FxHashMap with [fxhash](https://crates.io/crates/fxhash) * `nightly` for 2018 edition and nightly * `swisstable` for a SwissTable hash map implementation with [hashbrown](https://github.com/Amanieu/hashbrown) By default the crate uses `swisstable`.