blob: 20f30033c00c65fdde2e93ff2f0749760d88ade3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
[package]
authors = ["Austin Hellyer <[email protected]>"]
build = "build.rs"
description = "Ergonomic and high-level Rust library for the Discord API."
documentation = "http://serenity.zey.moe"
homepage = "https://github.com/zeyla/serenity.rs"
keywords = ["discord", "api"]
license = "ISC"
name = "serenity"
readme = "README.md"
repository = "https://github.com/zeyla/serenity.rs.git"
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"
[dependencies.opus]
optional = true
version = "0.1"
[dependencies.sodiumoxide]
default-features = false
optional = true
version = "0.0.12"
[build-dependencies]
yaml-rust = "0.3"
[features]
default = []
debug = []
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"
|