-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 811 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 811 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
[package]
name = "keycli"
version = "0.1.0"
edition = "2024"
description = "An environment manager which stores your secrets in your OS keyring"
license = "MIT"
[dependencies]
anyhow = "1.0.102"
clap = { version = "4", features = ["derive", "env"] }
clap_complete_command = "0.6.1"
colored = "3.1.1"
dialoguer = "0.12.0"
env_logger = "0.11.9"
heck = "0.5.0"
hex = "0.4.3"
log = "0.4.29"
regex = "1.12.3"
sha2 = "0.10.9"
[target.'cfg(target_os = "linux")'.dependencies]
keyring = { version = "3.6.3", features = ["linux-native-sync-persistent"] }
[target.'cfg(target_os = "macos")'.dependencies]
keyring = { version = "3.6.3", features = ["apple-native"] }
[target.'cfg(target_os = "windows")'.dependencies]
keyring = { version = "3.6.3", features = ["windows-native"] }
[dev-dependencies]
trycmd = "1.2.0"