-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
28 lines (26 loc) · 1.2 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
[package]
authors = ["Twilight Contributors"]
documentation = "https://twilight-rs.github.io/chapter_3_services/section_5_gateway_queue.html"
edition = "2018"
homepage = "https://github.com/twilight-rs/gateway-queue"
include = ["src/*.rs", "Cargo.toml"]
keywords = ["discord", "discord-api", "twilight"]
license = "ISC"
name = "twilight-gateway-queue"
publish = false
readme = "README.md"
repository = "https://github.com/twilight-rs/gateway-queue.git"
version = "0.1.0"
[dependencies]
twilight-gateway-queue = { version = "0.16", default-features = false }
twilight-http = { version = "0.16", default-features = false, features = ["rustls-webpki-roots"] }
hyper = { version = "0.14", default-features = false, features = ["http1", "server", "tcp"] }
serde = { version = "1", default-features = false, features = ["derive"] }
serde_urlencoded = { version = "0.7", default-features = false }
tracing = { version = "0.1", default-features = false, features = ["std"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "ansi", "fmt"] }
tokio = { version = "1", default-features = false, features = ["rt", "macros", "signal"] }
[profile.release]
codegen-units = 1
lto = true
panic = 'abort'