ezcrypt_rust/Cargo.toml

27 lines
818 B
TOML
Raw Permalink Normal View History

2023-12-12 04:18:18 +01:00
[package]
2024-03-08 04:25:42 +01:00
name = "ezcrypt"
2024-03-10 01:40:07 +01:00
version = "0.5.1"
2023-12-12 04:18:18 +01:00
edition = "2021"
authors=["starryuwu"]
2024-03-08 05:06:00 +01:00
license="GPL-2.0-or-later"
readme="README.md"
2024-03-08 05:07:37 +01:00
description="File encryption utility with forgot password functionality"
repository="https://git.disroot.org/starryuwu/ezcrypt_rust.git"
2024-03-08 05:06:00 +01:00
keywords=["cryptography","encryption","cli"]
categories=["cryptography","command-line-utilities"]
2023-12-12 04:18:18 +01:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes-gcm = "0.10.3"
2024-03-08 04:25:42 +01:00
anyhow = "1.0.80"
2023-12-12 04:18:18 +01:00
argon2 = "0.5.2"
2024-03-08 04:25:42 +01:00
base64 = "0.22.0"
2023-12-12 04:18:18 +01:00
clap = { version = "4.4.11", features = ["derive"] }
2024-03-08 04:25:42 +01:00
p256 = { version = "0.13.2", features = ["ecdh", "ecdsa"] }
rand = "0.8.5"
2023-12-12 04:18:18 +01:00
rmp-serde = "1.1.2"
rpassword = "7.3.1"
serde = { version = "1.0.193", features = ["derive"] }
2024-03-09 07:57:30 +01:00
serde_bytes = "0.11.14"
thiserror = "1.0.57"