-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 920 Bytes
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 920 Bytes
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
[package]
name = "luksctl"
version = "0.1.0"
edition = "2021"
description = "A CLI tool for mounting and unmounting LUKS encrypted volumes"
authors = ["zeroday0619"]
license-file = "LICENSE"
repository = "https://github.com/zeroday0619/luksctl"
homepage = "https://github.com/zeroday0619/luksctl"
readme = "README.md"
keywords = ["luks", "encryption", "mount", "cryptsetup", "cli"]
categories = ["command-line-utilities", "filesystem"]
exclude = [
".github/*",
".gitignore",
]
[[bin]]
name = "luks_mount"
path = "src/bin/luks_mount.rs"
[[bin]]
name = "luks_umount"
path = "src/bin/luks_umount.rs"
[dependencies]
clap = { version = "4.4", features = ["derive"] }
uuid = { version = "1.6", features = ["v4"] }
rpassword = "7.3"
anyhow = "1.0"
nix = { version = "0.27", features = ["fs", "mount", "user"] }
zeroize = { version = "1.7", features = ["derive"] }
secrecy = "0.10"
rust-i18n = "3"
sys-locale = "0.3"