summaryrefslogtreecommitdiff
path: root/backend/Cargo.toml
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-08-31 22:43:00 +0100
committerJoe Carstairs <me@joeac.net>2024-08-31 22:43:00 +0100
commit95d4db4da725b74999524a1307e5e17b434dbfeb (patch)
treee083d4d12014e78c9e2ba4414ac3cea2fe2563ff /backend/Cargo.toml
Backend
Diffstat (limited to 'backend/Cargo.toml')
-rw-r--r--backend/Cargo.toml13
1 files changed, 13 insertions, 0 deletions
diff --git a/backend/Cargo.toml b/backend/Cargo.toml
new file mode 100644
index 0000000..3f54913
--- /dev/null
+++ b/backend/Cargo.toml
@@ -0,0 +1,13 @@
+[package]
+name = "budgeting_app_backend"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+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"