2023-02-15 19:27:36 -05:00
|
|
|
[package]
|
|
|
|
|
name = "libpk"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-02-25 12:14:05 -05:00
|
|
|
anyhow = { workspace = true }
|
2024-06-16 21:56:14 +09:00
|
|
|
fred = { workspace = true }
|
2023-02-25 12:14:05 -05:00
|
|
|
lazy_static = { workspace = true }
|
2023-03-19 10:44:37 -04:00
|
|
|
metrics = { workspace = true }
|
2024-11-21 10:45:03 +09:00
|
|
|
sentry = { workspace = true }
|
2023-02-25 12:14:05 -05:00
|
|
|
serde = { workspace = true }
|
2024-11-21 10:45:03 +09:00
|
|
|
serde_json = { workspace = true }
|
2024-06-16 21:56:14 +09:00
|
|
|
sqlx = { workspace = true }
|
2024-10-21 11:42:32 +09:00
|
|
|
time = { workspace = true }
|
2023-02-25 12:14:05 -05:00
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
2024-08-22 07:10:35 +09:00
|
|
|
tracing-subscriber = { workspace = true}
|
2024-09-14 12:19:47 +09:00
|
|
|
twilight-model = { workspace = true }
|
2024-10-21 11:42:32 +09:00
|
|
|
uuid = { workspace = true }
|
2024-06-16 21:56:14 +09:00
|
|
|
|
2024-11-01 06:32:40 +09:00
|
|
|
config = "0.14.0"
|
2024-11-21 10:45:03 +09:00
|
|
|
json-subscriber = { version = "0.2.2", features = ["env-filter"] }
|
2024-11-01 06:32:40 +09:00
|
|
|
metrics-exporter-prometheus = { version = "0.15.3", default-features = false, features = ["tokio", "http-listener", "tracing"] }
|