aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml12
1 files changed, 4 insertions, 8 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0b7e8b2..5828b1f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2024"
[dependencies]
anyhow = "1"
-argon2 = "0.5"
+argon2 = { version = "0.5", features = ["password-hash", "rand"] }
password-hash = { version = "0.5", features = ["getrandom"] }
async-trait = "0.1"
base64 = "0.22"
@@ -23,18 +23,14 @@ redis = { version = "1", features = ["tokio-comp"] }
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
-sqlx = { version = "0.8", features = [
- "json",
- "sqlite",
- "runtime-tokio-rustls",
-] }
+sqlx = { version = "0.9", features = ["json", "sqlite", "runtime-tokio"] }
tempfile = "3"
itertools = "0.14"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
-toml = "0.9"
+toml = "1"
url = "2.1"
-uuid = { version = "1.2.1", features = ["v4"] }
+uuid = { version = "1.23", features = ["v4"] }
[target.aarch64-unknown-linux-musl.dependencies]
cpufeatures = "0.3"