From 27b95c9186bd45edd4c982a7cc89cf69cf2c5d46 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Wed, 16 Oct 2024 12:51:21 +0100 Subject: All backend stuff lives in backend folder --- backend/app/Cargo.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 backend/app/Cargo.toml (limited to 'backend/app/Cargo.toml') diff --git a/backend/app/Cargo.toml b/backend/app/Cargo.toml new file mode 100644 index 0000000..af1c8ef --- /dev/null +++ b/backend/app/Cargo.toml @@ -0,0 +1,15 @@ +[package] +name = "budgeting_app_backend" +version = "0.1.0" +edition = "2021" + +[dependencies] +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"] } +serde = "1.0.209" -- cgit v1.2.3