This repository has been archived on 2023-10-11. You can view files and clone it, but cannot push or open issues or pull requests.

43 lines
1.1 KiB
TOML
Raw Normal View History

2023-03-03 16:36:21 +01:00
[package]
name = "god-replacement-product"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
2023-03-19 22:59:11 +01:00
[profile.dev.package.sqlx-macros]
opt-level = 3
2023-03-03 16:36:21 +01:00
[dependencies]
2023-03-19 22:59:11 +01:00
anyhow = "1.0.70"
2023-03-03 16:36:21 +01:00
axum = "0.6.9"
2023-03-19 22:59:11 +01:00
axum-macros = "0.3.6"
2023-03-03 16:36:21 +01:00
base64 = "0.21.0"
dotenvy = "0.15.6"
ed25519-dalek = "2.0.0-pre.0"
hex = "0.4.3"
2023-03-20 06:00:42 +01:00
opentelemetry = { version = "0.18.0", features = ["trace", "rt-tokio"] }
opentelemetry-jaeger = "0.17.0"
2023-03-03 16:36:21 +01:00
serde = "1.0.152"
serde_json = "1.0.93"
2023-03-19 22:59:11 +01:00
sqlx = { version = "0.6.2", features = [
"offline",
"postgres",
"runtime-tokio-native-tls",
"time",
"uuid"
]}
time = "0.3.20"
2023-03-03 16:36:21 +01:00
tokio = { version = "1.26.0", features = ["full"] }
tower-http = { version = "0.4.0", features = ["trace"] }
tracing = "0.1.37"
tracing-loki = "0.2.2"
2023-03-20 06:00:42 +01:00
tracing-opentelemetry = "0.18.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
2023-03-03 16:36:21 +01:00
twilight-http = "0.15.1"
twilight-interactions = "0.15.0"
2023-03-19 22:59:11 +01:00
twilight-mention = "0.15.1"
2023-03-03 16:36:21 +01:00
twilight-model = "0.15.1"
twilight-util = { version = "0.15.1", features = ["builder"] }
url = "2.3.1"
2023-03-03 16:36:21 +01:00
ureq = { version = "2.6.2", features = ["json"] }
2023-03-19 22:59:11 +01:00
uuid = "1.3.0"