-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 1.49 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
[package]
name = "rateway"
version = "0.2.0"
authors = ["Jens Reidel <adrian@travitia.xyz>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
twilight-gateway = { git = "https://github.com/Gelbpunkt/twilight", branch = "local-changes", default-features = false, features = [
"rustls-webpki-roots",
"simd-json",
] }
twilight-model = { git = "https://github.com/Gelbpunkt/twilight", branch = "local-changes" }
twilight-http = { git = "https://github.com/Gelbpunkt/twilight", branch = "local-changes", default-features = false, features = [
"rustls-webpki-roots",
"simd-json"
] }
twilight-cache-inmemory = { git = "https://github.com/Gelbpunkt/twilight", branch = "local-changes" }
tokio-amqp = { version = "1.0", default-features = false }
lapin = { version = "1.7", default-features = false }
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread"] }
futures-util = { version = "0.3", default-features = false }
serde = { version = "1", features = ["derive", "rc"] }
toml = "0.5"
simd-json = { version = "0.4", default-features = false, features = [
"serde_impl",
"swar-number-parsing"
] }
env_logger = { version = "0.8", default-features = false, features = ["termcolor", "atty", "humantime"] }
log = "0.4"
[patch.crates-io]
hyper-rustls = { git = "https://github.com/ctz/hyper-rustls" }
[profile.release]
codegen-units = 1
debug = false
incremental = false
lto = true
opt-level = 3