aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-11-28 17:38:30 -0800
committerAustin Hellyer <[email protected]>2016-11-28 17:38:30 -0800
commit072ccc811313462984dfe9b1f5a8092b226564cb (patch)
tree4c0eb1b7368855704a089fb26fbd7c8ad8e02add
parentFix doctests (diff)
downloadserenity-072ccc811313462984dfe9b1f5a8092b226564cb.tar.xz
serenity-072ccc811313462984dfe9b1f5a8092b226564cb.zip
Cargo: Don't have bins for examples
The examples can already be run via `cargo run --example <filename>`, so there's no need for bin entries for them.
-rw-r--r--Cargo.toml35
1 files changed, 0 insertions, 35 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 853b69f..790bf60 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -51,38 +51,3 @@ debug = []
framework = []
methods = []
voice = ["opus", "sodiumoxide"]
-
-[[bin]]
-doc = false
-name = "example-01"
-path = "./examples/01_basic_ping_bot.rs"
-
-[[bin]]
-doc = false
-name = "example-02"
-path = "./examples/02_transparent_guild_sharding.rs"
-
-[[bin]]
-doc = false
-name = "example-03"
-path = "./examples/03_struct_utilities.rs"
-
-[[bin]]
-doc = false
-name = "example-04"
-path = "./examples/04_message_builder.rs"
-
-[[bin]]
-doc = false
-name = "example-05"
-path = "./examples/05_user_login.rs"
-
-[[bin]]
-doc = false
-name = "example-06"
-path = "./examples/06_command_framework.rs"
-
-[[bin]]
-doc = false
-name = "example-07"
-path = "./examples/07_voice.rs"