-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
46 lines (42 loc) · 1.1 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "enc_file"
version = "0.4.17"
authors = [
"ArdentEmpiricist <[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.11.1"
chacha20poly1305 = "0.10.1"
rand = "0.8.5"
serde = { version = "1.0.215", features = ["derive"] }
bincode = "1.3.3"
blake3 = { version = "1.5.4", features = ["rayon"] }
sha2 = "0.10.8"
sha3 = "0.10.8"