aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorKunoiSayami <[email protected]>2021-05-10 12:58:30 +0800
committerKunoiSayami <[email protected]>2021-05-10 12:58:30 +0800
commitc5ed7b895caad6dc4e6d3398fbe3c154a102959c (patch)
tree39391ba68632f0e573d9b8e4095262787e45bf18 /Cargo.toml
parente7f1a83e3b90208dccc33a0647a15cf12519d13a (diff)
refactor: Use argon2 instead of sha256 to store passwordv0.2.0
* style: Update html file style
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index aaa7f41..f16bad0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "cgit-simple-authentication"
-version = "0.1.5"
+version = "0.2.0"
authors = ["KunoiSayami <[email protected]>"]
edition = "2018"
@@ -19,10 +19,11 @@ clap = "2.33"
handlebars = "3.4"
url = "2.1"
redis = { version = "0.17", features = ["tokio-comp"] }
-sha2 = "0.9"
base64 = "0.13"
log4rs = "1"
tokio-stream = "0.1"
+argon2 = "0.2"
+rand_core = "0.6"
[target.aarch64-unknown-linux-musl.dependencies]
openssl = { version = "0.10", features = ["vendored"] } \ No newline at end of file