aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
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"]