-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Cargo.toml
54 lines (47 loc) · 1.22 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
53
54
[package]
name = "ripasso"
description = "A password manager that uses the file format of the standard unix password manager 'pass'"
repository = "https://github.com/cortex/ripasso/"
keywords = ["password-manager", "pass"]
version = "0.7.0-alpha"
license = "GPL-3.0-only"
edition = '2021'
[dependencies]
arboard = "3.4.0"
glob = "0.3.1"
gpgme = "0.11.0"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
git2 = "0.19.0"
rand = "0.8.5"
whoami = "1.4.1"
toml = "0.8.10"
reqwest = { version = "0.12", features = ["blocking"] }
hex = "0.4.3"
totp-rs = { version = "5.5.1", features = ["otpauth"] }
sequoia-openpgp = "1.21.0"
anyhow = "1.0.80"
sequoia-ipc = "0.35.0"
sequoia-gpg-agent = "0.4.0"
zeroize = { version = "1.8.0", features = ["zeroize_derive", "alloc"] }
[dependencies.config]
version = "0.11.0"
default-features = false
features = ["toml"]
[dev-dependencies]
tempfile = "3.12.0"
flate2 = "1.0.28"
tar = "0.4.40"
criterion = "0.5.1"
[workspace]
members = [
"gtk", "cursive"
]
[[bench]]
name = "library_benchmark"
harness = false
[profile.release]
lto = true
codegen-units = 1
strip = true
debug = false