1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//! Implementations of the `CharacterCache` trait. //! //! Enabled through Cargo features. //! //! ### RustType //! //! Add the following to "Cargo.toml": //! //! ```ignore //! [dependencies.piston2d-graphics] //! version = "*" //! features = ["glyph_cache_rusttype"] //! ``` #[cfg(feature = "glyph_cache_rusttype")] pub mod rusttype;