summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-05-29 23:44:14 +0200
committermetamuffin <metamuffin@disroot.org>2024-05-29 23:44:14 +0200
commit29c48afafb4a6a0a0636774f9b56423881fb1703 (patch)
treefa610555a33c25a1aaeb98242099c2010ac243b0 /Cargo.toml
parent886a18e0c67624d0882f04c7f6659bcfee6b4d8d (diff)
downloadgnix-29c48afafb4a6a0a0636774f9b56423881fb1703.tar
gnix-29c48afafb4a6a0a0636774f9b56423881fb1703.tar.bz2
gnix-29c48afafb4a6a0a0636774f9b56423881fb1703.tar.zst
implement cookie base auth.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 5 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index a1501f1..060f95e 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -43,3 +43,8 @@ mime_guess = "2.0.4"
bytes = "1.6.0"
anyhow = "1.0.82"
thiserror = "1.0.59"
+
+# Crypto for authentificating clients
+aes-gcm-siv = "0.11.1"
+argon2 = "0.6.0-pre.0"
+rand = "0.9.0-alpha.1"