-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 1009 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
[package]
name = "discidium"
version = "0.1.0"
authors = ["aemino <[email protected]>"]
edition = "2018"
homepage = "https://github.com/aemino/discidium"
[features]
default = ["memory-store"]
memory-store = ["dashmap"]
[dependencies]
anyhow = "1.0.38"
async-trait = "0.1.42"
async-tungstenite = { version = "0.12.0", features = ["tokio-runtime", "tokio-rustls"] }
chrono = { version = "0.4.19", features = ["serde"] }
dashmap = { version = "4.0.2", optional = true }
flate2 = "1.0.20"
futures = "0.3.12"
futures-async-stream = "0.2.5"
futures-lite = "1.11.3"
http = "0.2.3"
hyper = { version = "0.14.4", features = ["client", "http1", "http2"] }
hyper-tls = "0.5.0"
log = "0.4.14"
regex = "1.4.3"
serde = { version = "1.0.123", features = ["derive"] }
serde_json = "1.0.61"
serde_repr = "0.1.6"
serde_urlencoded = "0.7.0"
streamunordered = "0.5.2"
thiserror = "1.0.23"
tokio = { version = "1.1.1", features = ["macros", "rt", "time"] }
type-map = "0.4.0"
url = "2.2.0"
[dev-dependencies]
fern = "0.6.0"