summaryrefslogtreecommitdiff
path: root/backend/app/Cargo.toml
blob: 69e1ed12ef425d0b5271ae8ea80531576ff3246d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "budgeting_app_backend"
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"] }
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"] }