feat: Encrypt the hole vault file #26
2 changed files with 303 additions and 370 deletions
645
Cargo.lock
generated
645
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
28
Cargo.toml
28
Cargo.toml
|
@ -12,23 +12,23 @@ keywords = ["password", "manager", "CLI"]
|
|||
categories = ["command-line-utilities"]
|
||||
|
||||
[dependencies]
|
||||
base64 = "0.21.5"
|
||||
clap = { version = "4.4.11", features = ["derive"] }
|
||||
comfy-table = "7.1.0"
|
||||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
directories = "5.0.1"
|
||||
log = "0.4.20"
|
||||
log = "0.4.21"
|
||||
passwords = { version = "3.1.16", features = ["common-password"] }
|
||||
pretty_env_logger = "0.5.0"
|
||||
regex = "1.10.2"
|
||||
serde = { version = "1.0.193", features = ["derive"] }
|
||||
serde_json = "1.0.108"
|
||||
serde_with_macros = "3.4.0"
|
||||
sha256 = { version = "1.4.0", default-features = false }
|
||||
soft-aes = "0.1.0"
|
||||
thiserror = "1.0.51"
|
||||
url = { version = "2.5.0", features = ["serde"] }
|
||||
reqwest = {version = "0.11.23", optional = true}
|
||||
inquire = "0.7.4"
|
||||
regex = "1.10.4"
|
||||
serde = { version = "1.0.200", features = ["derive"] }
|
||||
thiserror = "1.0.59"
|
||||
reqwest = {version = "0.11.27", optional = true}
|
||||
inquire = "0.7.5"
|
||||
bincode = "1.3.3"
|
||||
rand = "0.8.5"
|
||||
cbc = { version = "0.1.2", features = ["alloc", "std"] }
|
||||
aes = "0.8.4"
|
||||
sha2 = "0.10.8"
|
||||
serde_json = "1.0.116"
|
||||
base64 = "0.22.1"
|
||||
|
||||
[features]
|
||||
default = ["update-notify"]
|
||||
|
|
Loading…
Reference in a new issue