diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-15 08:42:19 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-15 08:42:19 +0200 |
commit | a69c24e561c8ae16dc730f7713f8d8da0bd25e0e (patch) | |
tree | 32878bf97b1adf2da14c8e3da7265c8937b89650 /Cargo.toml | |
parent | a64eb6b08f2f8d22cf129fba39e1bb2c66bb3fad (diff) | |
download | sellershut-a69c24e561c8ae16dc730f7713f8d8da0bd25e0e.tar.bz2 sellershut-a69c24e561c8ae16dc730f7713f8d8da0bd25e0e.zip |
feat: persist with sqlx
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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"] } |