17 lines
431 B
TOML
17 lines
431 B
TOML
[package]
|
|
name = "gateway"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
shared = { path = "../../libs/shared" }
|
|
proto = { path = "../../libs/proto" }
|
|
leash = { path = "../../libs/leash" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
twilight-gateway = { version = "0.14" }
|
|
twilight-model = "0.14"
|
|
serde = { version = "1.0.8", features = ["derive"] }
|
|
futures = "0.3"
|
|
serde_json = { version = "1.0" }
|
|
bytes = "*"
|
|
anyhow = "*" |