forked from cortex/ripasso
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 777 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (32 loc) · 777 Bytes
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
[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.4.0-alpha"
authors = ["Joakim Lundborg <joakim.lundborg@gmail.com", "Alexander Kjäll <alexander.kjall@gmail.com>"]
license = "GPL-3.0-only"
edition = '2018'
[dependencies]
notify = "4"
glob = "0.3.0"
gpgme = "0.9.2"
chrono = "0.4"
git2 = "0.11.0"
log = "0.4.8"
env_logger = "0.7.0"
dirs = "2.0.2"
rand = "0.7.2"
whoami = "0.5.3"
[dev-dependencies]
tempfile = "3.1.0"
flate2 = "1.0.13"
tar = "0.4.26"
criterion = "0.3.0"
[workspace]
members = [
"gtk", "qml", "cursive", "man"
]
[[bench]]
name = "library_benchmark"
harness = false