-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (35 loc) · 936 Bytes
/
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
[package]
name = "secured"
version = "0.6.0"
edition = "2021"
authors = ["mikesposito"]
license = "MIT"
description = "A lightweight, easy-to-use Rust package for file encryption and decryption, suitable for both CLI and library integration in Rust applications."
repository = "https://github.com/mikesposito/secured/"
keywords = ["crypto", "encrypt", "decrypt", "cipher", "password"]
[workspace]
members = ["enclave", "cipher", "cipher/key", "benches"]
[dependencies.enclave]
package = "secured-enclave"
path = "enclave"
version = "0.6.0"
[dependencies.cipher]
package = "secured-cipher"
path = "cipher"
version = "0.4.1"
[dependencies.clap]
version = "^4.4.12"
features = ["derive"]
[dependencies.rpassword]
version = "^7.3.1"
[dependencies.glob]
version = "^0.3.0"
[dependencies.indicatif]
version = "^0.17.0"
[dependencies.hex]
version = "^0.4.3"
[[bin]]
name = "secured"
path = "src/main.rs"
[profile.bench]
debug = true