diff options
| author | Joe Carstairs <me@joeac.net> | 2024-10-16 18:22:55 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2024-10-17 06:55:02 +0100 |
| commit | 7adaace61a4fe983eba5ded3aaaf624ce6fb9014 (patch) | |
| tree | 6e0697f9dbb6e249c60af5a92479a86316c55221 /backend/core/Cargo.toml | |
| parent | 27b95c9186bd45edd4c982a7cc89cf69cf2c5d46 (diff) | |
Refactors some backend stuff to core lib
Diffstat (limited to 'backend/core/Cargo.toml')
| -rw-r--r-- | backend/core/Cargo.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/backend/core/Cargo.toml b/backend/core/Cargo.toml new file mode 100644 index 0000000..09b1ebf --- /dev/null +++ b/backend/core/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "budgeting_app_core" +version = "0.1.0" +edition = "2021" + +[dependencies] +chrono = { version = "0.4.38", features = ["serde"] } +diesel = { version = "2.2.0", features = ["sqlite"] } +diesel_migrations = "2.2.0" +serde = { version = "1.0.209", features = ["derive"] } |
