summaryrefslogtreecommitdiff
path: root/exes/cache/Cargo.toml
blob: 7566c1b422467fb1e780b43c006f8a12d70efd8b (plain)
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
[package]
name = "cache"
version = "0.1.0"
edition = "2018"
description = "Stores the data from discord if needed"
readme = "README.md"
repository = "https://github.com/discordnova/nova.git"
keywords = ["discord", "scaleable", "cache"]
categories = ["microservices", "nova"]
license = "APACHE2"

[dependencies]
shared = { path = "../../libs/shared" }
proto = { path = "../../libs/proto" }

tokio = { version = "1", features = ["rt"] }
tokio-stream = "0.1.11"

serde = { version = "1.0.8", features = ["derive"] }
serde_json = { version = "1.0" }

async-nats = "0.26.0"
twilight-model = "0.14.2"
anyhow = "1.0.68"

tracing = "0.1.37"