summaryrefslogtreecommitdiffstats
path: root/openproject-sync/Cargo.toml
diff options
context:
space:
mode:
authorLeonard Kugis <leonard@kug.is>2025-04-13 04:52:49 +0200
committerLeonard Kugis <leonard@kug.is>2025-04-13 04:52:49 +0200
commit552442a52ed264de155b5dcc2269abba6ead5a99 (patch)
tree9582ebacbac7f9c842c21f72cbdc201f01436439 /openproject-sync/Cargo.toml
parentb0297b96b52042ed390092faa22b26ef516a259a (diff)
downloadscripts-552442a52ed264de155b5dcc2269abba6ead5a99.tar.gz
Implemented openproject-sync
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"