diff options
| author | Austin Hellyer <[email protected]> | 2016-11-22 07:57:51 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-22 07:57:51 -0800 |
| commit | d4726f899cf6b86d805a8a2a77ec57782ec3bdd6 (patch) | |
| tree | 7966be3c6d6c4284bb618b88b3f146dd412af677 /src/ext/mod.rs | |
| parent | Don't typo CreateEmbed::image field (diff) | |
| download | serenity-d4726f899cf6b86d805a8a2a77ec57782ec3bdd6.tar.xz serenity-d4726f899cf6b86d805a8a2a77ec57782ec3bdd6.zip | |
Rename the State to Cache
Diffstat (limited to 'src/ext/mod.rs')
| -rw-r--r-- | src/ext/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ext/mod.rs b/src/ext/mod.rs index 312074b..4484b0b 100644 --- a/src/ext/mod.rs +++ b/src/ext/mod.rs @@ -6,16 +6,16 @@ //! See each extension's module-level documentation for more information. //! //! Note that the framework module requires the `framework` feature to be -//! enabled (enabled by default), the state requires the `state` feature to be +//! enabled (enabled by default), the cache requires the `cache` feature to be //! enabled (enabled by default), and voice support requires the `voice` feature //! to be enabled (disabled by default). //! //! [`Client`]: ../client/struct.Client.html //! [`Connection`]: ../client/struct.Connection.html +#[cfg(feature = "cache")] +pub mod cache; #[cfg(feature = "framework")] pub mod framework; -#[cfg(feature = "state")] -pub mod state; #[cfg(feature = "voice")] pub mod voice; |