forked from ArdentEmpiricist/enc_file
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (28 loc) · 1.03 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "enc_file"
version = "0.3.28"
authors = ["LazyEmpiricist <[email protected]>"]
edition = "2021"
description = "Encrypt / decrypt files or calculate hash from the command line. Warning: Don't use for anything important, use VeraCrypt or similar instead."
readme = "README.md"
homepage = "https://docs.rs/enc_file/"
documentation = "https://docs.rs/enc_file/"
repository = "https://github.com/LazyEmpiricist/enc_file"
keywords = ["encryption", "command-line", "chacha20poly1305", "aes-gcm", "blake3"]
categories = ["command-line-utilities", "cryptography", "encoding", "filesystem"]
license = "MIT"
[lib]
name = "enc_file"
path = "src/lib.rs"
[[bin]]
name = "enc_file"
path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes-gcm-siv = "0.10.3"
chacha20poly1305 = "0.9.0"
rand = "0.8.4"
serde = { version = "1.0.130", features = ["derive"] }
bincode = "1.3.3"
blake3 = { version = "1.1.0", features = ["rayon"] }
sha2 = "0.9.8"