summaryrefslogtreecommitdiff
path: root/rust/app/Cargo.toml
blob: efb8280d20ddf471ab55b73a521e8f4232548046 (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 = { 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"] }