summaryrefslogtreecommitdiff
path: root/backend/app/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'backend/app/Cargo.toml')
-rw-r--r--backend/app/Cargo.toml16
1 files changed, 8 insertions, 8 deletions
diff --git a/backend/app/Cargo.toml b/backend/app/Cargo.toml
index 69e1ed1..efb8280 100644
--- a/backend/app/Cargo.toml
+++ b/backend/app/Cargo.toml
@@ -5,11 +5,11 @@ edition = "2021"
[dependencies]
budgeting_app_core = { path = "../core" }
-chrono = { version = "0.4.38", features = ["serde"] }
-cfg-if = "1.0.0"
-diesel = { version = "2.2.0", features = ["sqlite"] }
-diesel_migrations = "2.2.0"
-dotenvy = "0.15.7"
-rocket = { version = "0.5.1", features = ["json"] }
-rocket_sync_db_pools = { version = "0.1.0", features = ["diesel_sqlite_pool"] }
-rusqlite = { version = "0.32.1", features = ["bundled"] }
+chrono = { workspace = true, features = ["serde"] }
+cfg-if = { workspace = true }
+diesel = { workspace = true, features = ["sqlite"] }
+diesel_migrations = { workspace = true }
+dotenvy = { workspace = true }
+rocket = { workspace = true, features = ["json"] }
+rocket_sync_db_pools = { workspace = true, features = ["diesel_sqlite_pool"] }
+rusqlite = { workspace = true, features = ["bundled"] }