summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDawid Rycerz <dawid@rycerz.xyz>2025-07-14 19:34:59 +0300
committerDawid Rycerz <dawid@rycerz.xyz>2025-07-14 19:34:59 +0300
commit50ce8cb96b2b218751c2fc2a6b19372f51846acc (patch)
treee2c634d2ce856062d527667d47815a05a53361c8 /Cargo.toml
parent0ab2e5ba2b0631b28b5b1405559237b3913c878f (diff)
feat: rewrite in rust
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml36
1 files changed, 36 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..b7471d9
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,36 @@
+[package]
+name = "silmataivas"
+version = "0.2.0"
+edition = "2024"
+
+[dependencies]
+axum = "0.8.4"
+chrono = "0.4.41"
+hyper = "1.6.0"
+lettre = "0.11.17"
+reqwest = { version = "0.12.22", features = ["json"] }
+serde = "1.0.219"
+serde_json = "1.0.140"
+sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio-native-tls"] }
+tera = "1.20.0"
+tokio = "1.46.1"
+tokio-task-scheduler = "1.0.0"
+tower = "0.5.2"
+tower-http = "0.6.6"
+uuid = "1.17.0"
+
+[dev-dependencies]
+anyhow = "1.0.98"
+axum = "0.8.4"
+dotenv = "0.15.0"
+lettre = "0.11.17"
+reqwest = "0.12.22"
+serde = "1.0.219"
+serde_derive = "1.0.219"
+serde_json = "1.0.140"
+sqlx = { version = "0.8.6", features = ["sqlite", "runtime-tokio-native-tls"] }
+tera = "1.20.0"
+tokio = "1.46.1"
+tokio-task-scheduler = "1.0.0"
+tower-http = "0.6.6"
+uuid = "1.17.0"