-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (35 loc) · 1.13 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
[package]
name = "kdbx"
version = "0.9.3"
authors = ["Danil Akhtarov <[email protected]>"]
edition = "2021"
description = "A secure hole for your passwords (Keepass CLI)"
documentation = "https://github.com/daxartio/kdbx"
homepage = "https://github.com/daxartio/kdbx"
repository = "https://github.com/daxartio/kdbx"
readme = "README.md"
keywords = ["keepass", "kdbx4", "password", "kdbx"]
categories = ["command-line-utilities"]
license = "MIT"
[features]
default = ["clipboard"]
clipboard = ["dep:arboard"]
[dependencies]
arboard = { version = "3.4", default-features = false, optional = true }
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
ctrlc = { version = "3.4", features = ["termination"] }
env_logger = "0.11"
human-panic = "2.0"
keepass = { version = "0.7", features = ["save_kdbx4", "totp"]}
libc = "0.2"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_warn"] }
once_cell = "1.20"
[target.'cfg(not(windows))'.dependencies]
skim = "0.16"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
rstest = "0.24"
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "3"