aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorrtkay123 <dev@kanjala.com>2026-04-04 10:51:18 +0200
committerrtkay123 <dev@kanjala.com>2026-04-04 10:51:18 +0200
commit19c25138f88acf19c9a959a58de4f58e54026ebc (patch)
treebd854f20c539770a92fb451503b4c6d132c110a6 /Cargo.toml
parent41d90f42c37df06dabfd717d19f3dc72b5ba2d11 (diff)
downloadsellershut-19c25138f88acf19c9a959a58de4f58e54026ebc.tar.bz2
sellershut-19c25138f88acf19c9a959a58de4f58e54026ebc.zip
feat: connect to db
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 11 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0326c37..a9a8c27 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,10 +9,20 @@ documentation = "https://books.kanjala.com/sellershut"
homepage = "https://git.kanjala.com/sellershut"
[workspace.dependencies]
-api-base = { path = "./crates/api-base", version = "0.0.0" }
+api-core = { path = "./crates/api-core", version = "0.0.0" }
async-trait = "0.1.89"
axum = "0.8.8"
+secrecy = "0.10.3"
serde = "1.0.228"
+serde_json = "1.0.149"
+tokio = "1.51.0"
+tower = "0.5.3"
thiserror = "2.0.18"
tracing = "0.1.44"
utoipa = "5.4.0"
+url = "2.5.8"
+
+[workspace.dependencies.sqlx]
+version = "0.8.6"
+default-features = false
+features = ["macros", "migrate", "postgres"]