29 lines
833 B
TOML
29 lines
833 B
TOML
[package]
|
|
name = "rest"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
shared = { path = "../../libs/shared" }
|
|
proto = { path = "../../libs/proto" }
|
|
leash = { path = "../../libs/leash" }
|
|
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1.0.8", features = ["derive"] }
|
|
futures-util = "0.3.17"
|
|
hyper-tls = "0.5.0"
|
|
lazy_static = "1.4.0"
|
|
xxhash-rust = { version = "0.8.2", features = ["xxh32"] }
|
|
twilight-http-ratelimiting = { git = "https://github.com/MatthieuCoder/twilight.git" }
|
|
tracing = "0.1.37"
|
|
hashring = "0.3.0"
|
|
anyhow = "*"
|
|
tonic = "0.8.3"
|
|
serde_json = { version = "1.0" }
|
|
http = "0.2.8"
|
|
tokio-stream = "0.1.11"
|
|
dns-lookup = "1.0.8"
|
|
tokio-scoped = "0.2.0" |