summaryrefslogtreecommitdiff
path: root/backend/actualbudget_importer/Cargo.toml
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-11-17 09:22:32 +0000
committerJoe Carstairs <me@joeac.net>2024-11-17 09:22:32 +0000
commit1a494937021561595d0fb29e26fb707aef9e55de (patch)
tree91234bbc9d1946946cf93d4d57b0b5a13a09de0a /backend/actualbudget_importer/Cargo.toml
parent3c7218be1446f8cf914063b1c52c1cbdc8497c8c (diff)
Refactors rust code into workspace
Diffstat (limited to 'backend/actualbudget_importer/Cargo.toml')
-rw-r--r--backend/actualbudget_importer/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/backend/actualbudget_importer/Cargo.toml b/backend/actualbudget_importer/Cargo.toml
new file mode 100644
index 0000000..69d297f
--- /dev/null
+++ b/backend/actualbudget_importer/Cargo.toml
@@ -0,0 +1,11 @@
+[package]
+name = "actualbudget_importer"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+anyhow = { workspace = true }
+budgeting_app_core = { path = "../core" }
+chrono = { workspace = true, features = ["serde"] }
+diesel = { workspace = true, features = ["sqlite"] }
+libsqlite3-sys = { workspace = true, features = ["bundled"] }