summaryrefslogtreecommitdiffstats
path: root/openproject-sync/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'openproject-sync/Cargo.toml')
-rw-r--r--openproject-sync/Cargo.toml18
1 files changed, 18 insertions, 0 deletions
diff --git a/openproject-sync/Cargo.toml b/openproject-sync/Cargo.toml
new file mode 100644
index 0000000..6470dcb
--- /dev/null
+++ b/openproject-sync/Cargo.toml
@@ -0,0 +1,18 @@
+[package]
+name = "openproject-sync"
+version = "0.1.0"
+edition = "2024"
+
+[dependencies]
+imap = "2.3"
+native-tls = "0.2"
+mailparse = "0.14"
+reqwest = { version = "0.11", features = ["json", "blocking", "rustls-tls"] }
+serde = { version = "1", features = ["derive"] }
+serde_json = "1"
+rusqlite = { version = "0.30.0", features = ["bundled"] }
+log = "0.4"
+env_logger = "0.10"
+tokio = { version = "1", features = ["full"] }
+clap = { version = "4.5", features = ["derive"] }
+regex = "1.10"