-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (34 loc) · 941 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
37
38
39
[package]
name = "keepass-cli"
version = "0.1.0"
edition = "2021"
build = "build.rs"
authors = ["Yu-Fu Fu <[email protected]>"]
description = "Alternative CLI for KeePass with Emacs integration"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
base58 = "0.2.0"
base64 = "0.13.1"
clap = { version = "4.0.26", features = ["derive"] }
clap-verbosity-flag = "2.0.0"
directories = "4.0.1"
is-terminal = "0.4.0"
keepass = { path = "./lib/libkeepass-rs" }
lexpr = "0.2.6"
libreauth = "0.15.0"
log = "0.4.17"
once_cell = "1.16.0"
rpassword = "7.1.0"
rustyline = "10.0.0"
shadow-rs = "0.17.1"
shellwords = "1.1.0"
tracing = "0.1.37"
tracing-core = "0.1.30"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
url = "2.3.1"
[build-dependencies]
shadow-rs = "0.17.1"
[profile.dev]
# must specifiy this; otherwise decrypt xml takes forever
opt-level = 3