-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
31 lines (29 loc) · 1.35 KB
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
[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]
rustls = { version = "0.23.35" }
twilight-gateway-queue = { version = "0.17", default-features = false }
twilight-http = { version = "0.17", default-features = false, features = ["rustls-webpki-roots"] }
http-body-util = "0.1"
hyper = { version = "1", default-features = false, features = ["http1"] }
hyper-util = { version = "0.1", default-features = false, features = ["http1", "server", "server-graceful", "tokio"] }
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'