diff options
| author | Austin Hellyer <[email protected]> | 2016-11-28 17:38:30 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-28 17:38:30 -0800 |
| commit | 072ccc811313462984dfe9b1f5a8092b226564cb (patch) | |
| tree | 4c0eb1b7368855704a089fb26fbd7c8ad8e02add | |
| parent | Fix doctests (diff) | |
| download | serenity-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.toml | 35 |
1 files changed, 0 insertions, 35 deletions
@@ -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" |