blob: 90e30ce5189cdaf1b28b38ba63506cd09123efb9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "shared"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { workspace = true }
serde_json = { workspace = true }
opentelemetry = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true }
config = { version = "0.13", default-features = false, features = ["json", "yaml-rust", "ini"] }
redis = { version = "0.22.1", features = ["cluster", "connection-manager", "tokio-comp"] }
async-nats = "0.26.0"
twilight-model = "0.14"
anyhow = "1.0.68"
opentelemetry-otlp = "0.11.0"
|