-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (35 loc) · 962 Bytes
/
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 = "strife"
version = "0.3.0"
authors = ["James Whaley <juicy66173@gmail.com>"]
description = "A lightweight library for the Discord API."
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/strife"
homepage = "https://github.com/Juici/strife"
repository = "https://github.com/Juici/strife"
categories = ["api-bindings", "asynchronous"]
keywords = ["discord", "api", "async"]
edition = "2018"
[features]
default = []
systime_ratelimits = []
[dependencies]
async-std = "1.3"
bitflags = "1.2"
bytes = "0.5"
chrono = { version = "0.4", features = ["serde"] }
futures-timer = "2.0"
hyper = "0.13"
hyper-tls = "0.4"
int-enum = { version = "0.3", features = ["serialize", "convert"] }
log = "0.4"
num-traits = "0.2"
remain = "0.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
[dev-dependencies]
anyhow = "1.0"
pretty_env_logger = "0.3"
tokio = { version = "0.2", features = ["macros"] }