summaryrefslogtreecommitdiff
path: root/backend/app/Cargo.toml
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-11-17 09:22:32 +0000
committerJoe Carstairs <me@joeac.net>2024-11-17 09:22:32 +0000
commit1a494937021561595d0fb29e26fb707aef9e55de (patch)
tree91234bbc9d1946946cf93d4d57b0b5a13a09de0a /backend/app/Cargo.toml
parent3c7218be1446f8cf914063b1c52c1cbdc8497c8c (diff)
Refactors rust code into workspace
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"] }