mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-22 07:28:43 -04:00
* add key attribute to `Key` in `ListOfKeys` * add balloon hashing function with untailored parameters * add ser/de rules for blake3-balloon (and change argon2id's) * fix benchmark * use `to_bytes`, `from_bytes` and `from_reader` * cleanup code * add blake3-balloon options to the UI and fix library sync/automount enable bug * cleanup some serialization code * fix hashing algorithm deserialization * clean up header serialization + more idiomatic master key decryption * clippy * add generic ser/de error to crypto crate * fix `Display` and crypto cli * move crypto cli to cli app Co-authored-by: Brendan Allan <brendonovich@outlook.com>
14 lines
318 B
TOML
14 lines
318 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
indoc = "1.0.8"
|
|
clap = { version = "4.0.32", features = ["derive"] }
|
|
anyhow = "1.0.68"
|
|
hex = "0.4.3"
|
|
sd-crypto = { path = "../../crates/crypto" }
|