aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/05_command_framework/Cargo.toml2
-rw-r--r--examples/05_command_framework/src/main.rs2
-rw-r--r--examples/06_voice/Cargo.toml2
-rw-r--r--examples/06_voice/src/main.rs2
-rw-r--r--examples/07_sample_bot_structure/Cargo.toml2
-rw-r--r--examples/07_sample_bot_structure/src/main.rs2
6 files changed, 6 insertions, 6 deletions
diff --git a/examples/05_command_framework/Cargo.toml b/examples/05_command_framework/Cargo.toml
index 3193deb..51931dc 100644
--- a/examples/05_command_framework/Cargo.toml
+++ b/examples/05_command_framework/Cargo.toml
@@ -7,5 +7,5 @@ authors = ["my name <[email protected]>"]
typemap = "0.3"
[dependencies.serenity]
-features = ["framework"]
+features = ["framework", "standard_framework"]
path = "../../"
diff --git a/examples/05_command_framework/src/main.rs b/examples/05_command_framework/src/main.rs
index a48aae1..6527a93 100644
--- a/examples/05_command_framework/src/main.rs
+++ b/examples/05_command_framework/src/main.rs
@@ -6,7 +6,7 @@
//! ```toml
//! [dependencies.serenity]
//! git = "https://github.com/zeyla/serenity.git"
-//! features = ["framework"]
+//! features = ["framework", "standard_framework"]
//! ```
#[macro_use]
diff --git a/examples/06_voice/Cargo.toml b/examples/06_voice/Cargo.toml
index 0472203..410e717 100644
--- a/examples/06_voice/Cargo.toml
+++ b/examples/06_voice/Cargo.toml
@@ -4,5 +4,5 @@ version = "0.1.0"
authors = ["my name <[email protected]>"]
[dependencies.serenity]
-features = ["cache", "framework", "voice"]
+features = ["cache", "framework", "standard_framework", "voice"]
path = "../../"
diff --git a/examples/06_voice/src/main.rs b/examples/06_voice/src/main.rs
index 40d8817..8de2c3b 100644
--- a/examples/06_voice/src/main.rs
+++ b/examples/06_voice/src/main.rs
@@ -4,7 +4,7 @@
//! ```toml
//! [dependencies.serenity]
//! git = "https://github.com/zeyla/serenity.git"
-//! features = ["cache", "framework", "voice"]
+//! features = ["cache", "framework", "standard_framework", "voice"]
//! ```
#[macro_use]
diff --git a/examples/07_sample_bot_structure/Cargo.toml b/examples/07_sample_bot_structure/Cargo.toml
index 966cd1f..0bebb46 100644
--- a/examples/07_sample_bot_structure/Cargo.toml
+++ b/examples/07_sample_bot_structure/Cargo.toml
@@ -4,5 +4,5 @@ version = "0.1.0"
authors = ["my name <[email protected]>"]
[dependencies.serenity]
-features = ["cache", "framework"]
+features = ["cache", "framework", "standard_framework"]
path = "../../"
diff --git a/examples/07_sample_bot_structure/src/main.rs b/examples/07_sample_bot_structure/src/main.rs
index 7fc415c..8962d55 100644
--- a/examples/07_sample_bot_structure/src/main.rs
+++ b/examples/07_sample_bot_structure/src/main.rs
@@ -6,7 +6,7 @@
//! ```toml
//! [dependencies.serenity]
//! git = "https://github.com/zeyla/serenity.git"
-//! features = ["framework"]
+//! features = ["framework", "standard_framework"]
//! ```
#[macro_use]