summaryrefslogtreecommitdiff
path: root/rust/Cargo.toml
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2024-11-17 09:23:28 +0000
committerJoe Carstairs <me@joeac.net>2024-11-17 09:23:28 +0000
commit1ae19eb3315c40e3f9062592c27fa76c11cf626c (patch)
tree09d9ce380795971f4b50e1d4b0ca3c57c9e1db1a /rust/Cargo.toml
parent1a494937021561595d0fb29e26fb707aef9e55de (diff)
Renames workspace folder
Diffstat (limited to 'rust/Cargo.toml')
-rw-r--r--rust/Cargo.toml21
1 files changed, 21 insertions, 0 deletions
diff --git a/rust/Cargo.toml b/rust/Cargo.toml
new file mode 100644
index 0000000..015b688
--- /dev/null
+++ b/rust/Cargo.toml
@@ -0,0 +1,21 @@
+[workspace]
+members = [
+ "actualbudget_importer",
+ "app",
+ "core",
+]
+resolver = "2"
+
+[workspace.dependencies]
+anyhow = { version = "1.0.0" }
+chrono = { version = "0.4.38" }
+cfg-if = "1.0.0"
+derive_builder = { version = "0.20.2" }
+diesel = { version = "2.2.0" }
+diesel_migrations = "2.2.0"
+dotenvy = "0.15.7"
+libsqlite3-sys = { version = "0.30.1" }
+rocket = { version = "0.5.1" }
+rocket_sync_db_pools = { version = "0.1.0" }
+rusqlite = { version = "0.32.1" }
+serde = { version = "1.0.209", features = ["derive"] }