aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml28
1 files changed, 10 insertions, 18 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1baa66c..35eaf6d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,14 +1,14 @@
[package]
name = "cgit-simple-authentication"
-version = "4.2.0"
+version = "4.4.1"
authors = ["KunoiSayami <[email protected]>"]
edition = "2024"
[dependencies]
anyhow = "1"
-argon2 = "0.5.0"
+argon2 = { version = "0.6", features = ["password-hash", "getrandom"] }
async-trait = "0.1"
-base64 = "0.22"
+base64 = "0.23"
clap = "4"
env_logger = "0.11"
handlebars = "6.0"
@@ -17,31 +17,23 @@ log = { version = "0.4", features = [
"release_max_level_info",
] }
log4rs = "1"
-pam = { git = "https://github.com/1wilkens/pam.git", optional = true }
-rand = "0.9"
-redis = { version = "0.29", features = ["tokio-comp"] }
+rand = "0.10"
+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"
+itertools = "0.15"
tokio = { version = "1", features = ["full"] }
tokio-stream = "0.1"
-toml = "0.8"
+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.2.5"
+cpufeatures = "0.3"
[profile.release]
lto = true
panic = "abort"
-
-[features]
-default = []