-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (32 loc) · 905 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
[package]
name = "kp"
version = "0.2.0"
authors = ["paul <paul@makovi.ch>"]
edition = "2021"
description = "KeePass CLI"
documentation = "https://github.com/makovich/kp"
homepage = "https://github.com/makovich/kp"
repository = "https://github.com/makovich/kp"
readme = "README.md"
keywords = ["keepass", "kdbx4", "password"]
categories = ["command-line-utilities"]
license = "Unlicense OR MIT"
[badges]
travis-ci = { repository = "makovich/kp" }
[features]
default = ["clipboard"]
[dependencies]
atty = "0.2"
clipboard = { version = "0.5.0", optional = true }
ctrlc = { version = "3.0", features = ["termination"] }
docopt = "1"
env_logger = "0.9"
kdbx4 = "0.5"
log = { version = "0.4", features = ["max_level_trace", "release_max_level_warn"] }
once_cell = "1.8"
serde = "1.0"
serde_derive = "1.0"
skim = "0.9"
libc = "0.2"
[target.'cfg(target_os = "macos")'.dependencies]
security-framework = "2.4"