summaryrefslogtreecommitdiff
path: root/backend/app/Cargo.toml
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-10-16 18:22:55 +0100
committerJoe Carstairs <me@joeac.net>2024-10-17 06:55:02 +0100
commit7adaace61a4fe983eba5ded3aaaf624ce6fb9014 (patch)
tree6e0697f9dbb6e249c60af5a92479a86316c55221 /backend/app/Cargo.toml
parent27b95c9186bd45edd4c982a7cc89cf69cf2c5d46 (diff)
Refactors some backend stuff to core lib
Diffstat (limited to 'backend/app/Cargo.toml')
-rw-r--r--backend/app/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/app/Cargo.toml b/backend/app/Cargo.toml
index af1c8ef..69e1ed1 100644
--- a/backend/app/Cargo.toml
+++ b/backend/app/Cargo.toml
@@ -4,6 +4,7 @@ version = "0.1.0"
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"] }
@@ -12,4 +13,3 @@ 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"] }
-serde = "1.0.209"