From d477e234d03bb55234c2ca40d6ff61e88754ad94 Mon Sep 17 00:00:00 2001 From: KunoiSayami Date: Sun, 16 Jan 2022 22:25:55 +0800 Subject: feat: Add immutable option make sure sqlite file readonly * chore: Bump version Signed-off-by: KunoiSayami --- Cargo.toml | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 361b6cc..6cd90a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,39 +1,39 @@ [package] name = "cgit-simple-authentication" -version = "4.0.0-alpha.2" +version = "4.0.0-beta" authors = ["KunoiSayami "] edition = "2018" [dependencies] -log = { version = "0.4", features = ["max_level_trace", "release_max_level_info"] } -env_logger = "0.8" -tokio = { version = "1", features = ["full"] } -serde_json = "1" -serde = { version = "1", features = ["derive"] } anyhow = "1" -toml = "0.5" -sqlx = { version = "0.5", features = [ "json", "sqlite", "runtime-actix-native-tls"] } -rand = "0.7" +argon2 = "0.3" +async-trait = "0.1" +base64 = "0.13" clap = "2.33" +env_logger = "0.8" handlebars = "3.4" -url = "2.1" -redis = { version = "0.17", features = ["tokio-comp"] } -base64 = "0.13" +log = { version = "0.4", features = ["max_level_trace", "release_max_level_info"] } log4rs = "1" +pam = "0.7.0" +rand = "0.7" +rand_core = { version = "0.6", features = ["std"] } +redis = { version = "0.17", features = ["tokio-comp"] } +regex = "1" +serde = { version = "1", features = ["derive"] } +serde_json = "1" +sqlx = { version = "0.5", features = [ "json", "sqlite", "runtime-actix-native-tls"] } +tempdir = "0.3" +tokio = { version = "1", features = ["full"] } tokio-stream = "0.1" -argon2 = "0.2" -rand_core = "0.6" +toml = "0.5" +url = "2.1" uuid = { version = "0.8", features = ["v4"] } -tempdir = "0.3" -regex = "1" -pam = "0.7.0" -async-trait = "0.1" [target.aarch64-unknown-linux-musl.dependencies] openssl = { version = "0.10", features = ["vendored"] } cpufeatures = "0.1.3" [profile.release] -opt-level=3 -lto=true -panic="abort" \ No newline at end of file +opt-level = 3 +lto = true +panic = "abort" -- cgit v1.3.1