-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
38 lines (32 loc) · 1.02 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
[package]
name = "scromble"
description = "A no-nonsense single-file encryptor with data authentication"
version = "2.0.0"
authors = ["Joe Doyle <[email protected]>"]
edition = "2018"
license = "AGPL-3.0-or-later"
license-file = "LICENSE"
[build]
rustflags = ["-Ctarget-cpu=haswell","-Ctarget-feature=+sse2"]
[profile.release]
lto = "fat"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = { version = "0.3" }
argon2 = { version = "0.4.1" }
blake2 = { version = "0.10.6" }
secrecy = { version = "0.8.0" }
typenum = { version = "1.14" }
chacha20 = { version = "0.9.0", features = [ "zeroize" ] }
zeroize = { version = "1.1.1", features = [ "zeroize_derive" ] }
rpassword = "5.0"
quickcheck = "1.0.3"
rand = "0.8.5"
conv = "0.3.3"
generic-array = "0.14.4"
cipher = { version = "0.4.2", features = [ "std" ] }
rand_chacha = { version = "0.3.1" }
subtle = { version = "2.4.1" }
digest = { version = "0.10.6" }
[dev-dependencies]
quickcheck_macros = "1.0.0"