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