aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9b59ed0..3dc810d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -8,8 +8,13 @@ publish = false
8members = [".", "entity", "migration"] 8members = [".", "entity", "migration"]
9 9
10[dependencies] 10[dependencies]
11argon2 = "0.5.3"
11axum = "0.8.4" 12axum = "0.8.4"
13axum-extra = { version = "0.10.1", features = ["typed-header"] }
14chrono = { version = "0.4.41", features = ["serde"] }
12entity = { version = "0.1.0", path = "entity" } 15entity = { version = "0.1.0", path = "entity" }
16headers = "0.4.1"
17jsonwebtoken = "9.3.1"
13migration = { version = "0.1.0", path = "migration" } 18migration = { version = "0.1.0", path = "migration" }
14sea-orm = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] } 19sea-orm = { version = "1.1.14", features = ["sqlx-postgres", "runtime-tokio-rustls"] }
15serde = { version = "1.0.219", features = ["derive"] } 20serde = { version = "1.0.219", features = ["derive"] }