summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml6
1 files changed, 5 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1bd7537..4dd7120 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,15 +12,19 @@ activitypub_federation = { version = "0.7.0-beta.5", default-features = false, f
anyhow = "1.0.98"
async-trait = "0.1.88"
axum = { version = "0.8.4", features = ["macros"] }
+clap = { version = "4.5.41", features = ["derive"] }
+config = { version = "0.15.13", default-features = false, features = ["toml"] }
serde = { version = "1.0.219", features = ["derive"] }
+sqlx = { version = "0.8.6", features = ["macros", "migrate", "runtime-tokio", "time", "tls-rustls", "uuid"] }
tokio = { version = "1.46.1", features = ["macros", "rt-multi-thread", "signal"] }
tower-http = { version = "0.6.6", features = ["trace"] }
tracing = "0.1.41"
url = "2.5.4"
+uuid = { version = "1.17.0", features = ["v7"] }
[dependencies.stack-up]
git = "https://github.com/rtkay123/stack-up.git"
-features = ["tracing"]
+features = ["api", "postgres", "tracing"]
[dev-dependencies]
tower = { version = "0.5.2", features = ["util"] }