aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-09-19 09:00:03 -0700
committerAustin Hellyer <[email protected]>2016-10-18 11:14:27 -0700
commit8fc8c81403c3daa187ba96a7d488a64db21463bf (patch)
tree81bc4890c28b08ce806f69084617066bce863c2d /Cargo.toml
downloadserenity-8fc8c81403c3daa187ba96a7d488a64db21463bf.tar.xz
serenity-8fc8c81403c3daa187ba96a7d488a64db21463bf.zip
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml69
1 files changed, 69 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..78ad2e1
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,69 @@
+[package]
+authors = ["Austin Hellyer <[email protected]>"]
+build = "build.rs"
+description = "Ergonomic and high-level Rust library for the Discord API."
+documentation = "http://docs.austinhellyer.me/serenity"
+keywords = ["discord", "api"]
+license = "ISC"
+name = "serenity"
+readme = "README.md"
+repository = "https://github.com/zeyla/serenity.rs"
+version = "0.1.0"
+
+[dependencies]
+base64 = "0.2"
+bitflags = "0.7"
+byteorder = "0.5"
+flate2 = "0.2"
+hyper = "0.9"
+lazy_static = "0.2"
+log = "0.3"
+serde_json = "0.8"
+time = "0.1"
+websocket = "0.17"
+
+[dependencies.cookie]
+default-features = false
+version = "0.2"
+
+[dependencies.multipart]
+default-features = false
+features = ["client", "hyper"]
+version = "0.8"
+
+[build-dependencies]
+yaml-rust = "0.3"
+
+[features]
+default = []
+debug = []
+
+[[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"