aboutsummaryrefslogtreecommitdiff
path: root/examples/01_basic_ping_bot/Cargo.toml
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2017-04-13 20:45:56 -0700
committerZeyla Hellyer <[email protected]>2017-04-19 14:53:32 -0700
commit3f03f9adc97315bb61a5c71f52365306cb8e2d1a (patch)
tree8fe0b518d1450b0657cfb75f56251fd90120807e /examples/01_basic_ping_bot/Cargo.toml
parentUpdate the way errors are handled in dispatch (diff)
downloadserenity-3f03f9adc97315bb61a5c71f52365306cb8e2d1a.tar.xz
serenity-3f03f9adc97315bb61a5c71f52365306cb8e2d1a.zip
Deprecate methods prefixed with `get_`
A lot of structs - such as `Guild` or `ChannelId` - have methods with prefixes of `get_`, which are generally discouraged. To fix this, deprecate them and remove them in v0.3.0.
Diffstat (limited to 'examples/01_basic_ping_bot/Cargo.toml')
-rw-r--r--examples/01_basic_ping_bot/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/01_basic_ping_bot/Cargo.toml b/examples/01_basic_ping_bot/Cargo.toml
index deded6f..760ce2c 100644
--- a/examples/01_basic_ping_bot/Cargo.toml
+++ b/examples/01_basic_ping_bot/Cargo.toml
@@ -4,4 +4,6 @@ version = "0.1.0"
authors = ["my name <[email protected]>"]
[dependencies]
-serenity = { path = "../../" }
+serenity = { path = "../../", default-features = true }
+env_logger = "*"
+log= "*"