diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 42 |
1 files changed, 21 insertions, 21 deletions
@@ -1,39 +1,39 @@ [package] name = "cgit-simple-authentication" -version = "4.0.0-alpha.2" +version = "4.0.0-beta" authors = ["KunoiSayami <[email protected]>"] 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" |
