forked from chamburr/twilight-dispatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (39 loc) · 1.87 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
42
43
44
[package]
name = "twilight-dispatch"
version = "0.2.2"
authors = ["CHamburr <[email protected]>"]
edition = "2018"
[dependencies]
dotenv = { version = "0.15", default-features = false}
hyper = { version = "0.13", default-features = false }
lapin = { version = "1.6", default-features = false }
lazy_static = { version = "1.4", default-features = false }
prometheus = { version = "0.11", default-features = false, features = ["process"] }
redis = { version = "0.17", default-features = false, features = ["tokio-rt-core"] }
serde = { version = "1.0", default-features = false }
serde-mappable-seq = { version = "0.1", default-features = false }
serde_repr = { version = "0.1", default-features = false }
simd-json = { version = "0.3", default-features = false }
time = { version = "0.2", default-features = false, features = ["std"] }
tokio = { version = "0.2", default-features = false, features = ["rt-threaded", "macros", "signal", "time"] }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "fmt"] }
#twilight-gateway = { version = "0.2", default-features = false, features = ["rustls", "simd-json", "simd-zlib"] }
#twilight-http = { version = "0.2", default-features = false, features = ["rustls", "simd-json"] }
#twilight-model = { version = "0.2", default-features = false }
[dependencies.twilight-gateway]
git = "https://github.com/chamburr/twilight"
branch = "fix-model-serialising-null"
default-features = false
features = ["rustls", "simd-json", "simd-zlib"]
[dependencies.twilight-http]
git = "https://github.com/chamburr/twilight"
branch = "fix-model-serialising-null"
default-features = false
features = ["rustls", "simd-json"]
[dependencies.twilight-model]
git = "https://github.com/chamburr/twilight"
branch = "fix-model-serialising-null"
default-features = false
[profile.release]
lto = "thin"