19 lines
525 B
TOML
19 lines
525 B
TOML
[package]
|
|
name = "cache"
|
|
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" }
|
|
async-nats = "0.25.1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1.0.8", features = ["derive"] }
|
|
log = { version = "0.4", features = ["std"] }
|
|
serde_json = { version = "1.0" }
|
|
redis = "*"
|
|
futures-util = "*"
|
|
twilight-model = "0.14"
|
|
anyhow = "1.0.68" |