-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
53 lines (46 loc) · 1.18 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
47
48
49
50
51
52
53
[package]
name = "crypt4gh"
version = "0.4.1"
authors = ["Roberto <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "Encryption and decryption implementation of the Crypt4GH encryption format."
repository = "https://github.com/EGA-archive/crypt4gh-rust"
documentation = "https://docs.rs/crypt4gh"
keywords = ["crypt4gh", "genetics", "genome", "encryption", "c4gh"]
categories = ["cryptography", "encoding"]
readme = "README.md"
[lib]
name = "crypt4gh"
path = "src/lib.rs"
[[bin]]
name = "crypt4gh"
path = "src/bin.rs"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
regex = "1.5"
rpassword = "7"
base64 = "0.21"
lazy_static = "1.4"
chacha20poly1305 = "0.10"
crypto_kx = { version = "0.2.1" }
scrypt = { version = "0.11" }
bcrypt-pbkdf = { version = "0.10" }
aes = { version = "0.8" }
ctr = { version = "0.9" }
cbc = { version = "0.1" }
bincode = "1"
serde = { version = "1", features = ["derive"] }
log = "0.4"
pretty_env_logger = "0.5"
thiserror = "1"
itertools = "0.11"
rand = "0.8"
rand_chacha = "0.3"
ed25519_to_curve25519 = "0.2"
curve25519-dalek = "4.0.0"
[dev-dependencies]
testresult = "0.3"
[profile.release]
lto = true
overflow-checks = true