aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorHimbeerserverDE <himbeerserverde@gmail.com>2024-01-22 18:57:14 +0100
committerHimbeerserverDE <himbeerserverde@gmail.com>2024-01-22 18:57:14 +0100
commitfb43b5c02b004ec6d34f19dd54befa1a9f058641 (patch)
tree55a83a9ad07387d5cb53a7315593ab283a9f0900 /Cargo.lock
parent0b75144b6e13fce05f6ead7db6a58004bcc2194d (diff)
implement client-side authentication and encryption setup
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock11
1 files changed, 11 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index edcfc29..696dc8c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -100,6 +100,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
+name = "bincode"
+version = "1.3.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
+dependencies = [
+ "serde",
+]
+
+[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -326,6 +335,7 @@ name = "hbak_common"
version = "0.1.0-dev"
dependencies = [
"argon2",
+ "bincode",
"chacha20",
"chacha20poly1305",
"chrono",
@@ -333,6 +343,7 @@ dependencies = [
"rand",
"serde",
"sha2",
+ "subtle",
"sys-mount",
"thiserror",
"toml",