-
Notifications
You must be signed in to change notification settings - Fork 94
/
Cargo.toml
41 lines (35 loc) · 1.06 KB
/
Cargo.toml
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
[package]
name = "discord"
version = "0.9.0"
authors = ["Tad Hardesty <[email protected]>"]
description = "Client library for the Discord API"
readme = "README.md"
license = "MIT"
keywords = ["discord", "chat", "bot", "api", "voice"]
repository = "https://github.com/SpaceManiac/discord-rs"
documentation = "https://docs.rs/discord/0.9.0"
[features]
default = ["voice"]
voice = ["opus", "sodiumoxide", "byteorder"]
[dependencies]
hyper = { version = "0.10", default-features = false }
hyper-native-tls = "0.3.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
websocket = { git = "https://github.com/SpaceManiac/rust-websocket", branch = "hyper-bump" }
bitflags = "1.2"
byteorder = { version = "1.3", optional = true }
log = "0.4.8"
base64-rs = "0.1.1"
flate2 = "1.0"
opus = { version = "0.2.1", optional = true }
multipart = { version = "0.17.0", default-features = false, features = ["client", "mock"] }
[dependencies.chrono]
version = "0.4.11"
features = ["serde"]
[dependencies.sodiumoxide]
version = "0.2.5"
default-features = false
features = ["std"]
optional = true