-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
52 lines (47 loc) · 1.55 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
41
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "git-credential-keepassxc"
version = "0.14.1"
authors = ["Frederick Zhang <[email protected]>"]
edition = "2021"
description = "Helper that allows Git and shell scripts to use KeePassXC as credential store"
license = "GPL-3.0-or-later"
homepage = "https://github.com/Frederick888/git-credential-keepassxc"
readme = "README.md"
repository = "https://github.com/Frederick888/git-credential-keepassxc"
keywords = ["git", "keepass", "keepassxc", "command-line"]
categories = ["command-line-utilities", "authentication", "development-tools"]
[features]
default = []
all = ["notification", "encryption", "yubikey", "strict-caller"]
strict-caller = []
notification = ["notify-rust"]
encryption = ["aes-gcm/aes", "aes-gcm/alloc"]
yubikey = ["yubico_manager", "encryption"]
[dependencies]
aes-gcm = { version = "0.10.1", default-features = false }
anyhow = "1.0.28"
base64 = "0.22.1"
clap = { version = "3.1.18", features = ["derive"] }
crypto_box = "0.9.1"
directories-next = "2.0.0"
notify-rust = { version = "4.5.9", optional = true }
num_enum = "0.7.0"
once_cell = "1.3.1"
rand = "0.8.3"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.52"
slog = "2.5.2"
slog-term = "2.5.0"
strum = { version = "0.26.1", features = ["derive"] }
sysinfo = "0.31.2"
tabwriter = "1.2.1"
which = "6.0.0"
yubico_manager = { version = "0.9.0", optional = true }
[target.'cfg(target_os = "linux")'.dependencies]
prctl = "1.0.0"
[target.'cfg(windows)'.dependencies]
named_pipe = "0.4.1"
[dev-dependencies]
mockall = "0.13.0"
sha-1 = "0.10.0"
hmac = "0.12.0"