-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
52 lines (42 loc) · 1.34 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 = "prs-gtk3"
version = "0.5.2"
authors = ["Tim Visee <[email protected]>"]
license = "GPL-3.0"
readme = "../README.md"
homepage = "https://timvisee.com/projects/prs"
repository = "https://gitlab.com/timvisee/prs"
description = "Secure, fast & convenient password manager CLI with GPG & git sync"
keywords = ["pass", "passwordstore"]
categories = [
"authentication",
"command-line-utilities",
"cryptography",
]
edition = "2024"
rust-version = "1.85.0"
[features]
default = ["backend-gnupg-bin", "notify", "tomb"]
### Regular features
# Option (default): notification support (clipboard notifications)
notify = ["notify-rust"]
# Option (default): tomb support for password store on Linux
tomb = ["prs-lib/tomb"]
### Pluggable cryptography backends
# Option: GnuPG cryptography backend using GPGME
backend-gpgme = ["prs-lib/backend-gpgme"]
# Option (default): GnuPG cryptography backend using gpg binary
backend-gnupg-bin = ["prs-lib/backend-gnupg-bin"]
[dependencies]
anyhow = "1.0"
gdk = "0.18"
gio = { version = "0.18", features = ["v2_72"] }
glib = "0.18"
gtk = { version = "0.18", features = ["v3_24"] }
prs-lib = { version = "=0.5.2", path = "../lib", default-features = false }
thiserror = "2.0"
# Notification support
notify-rust = { version = "4.6", optional = true }
[[bin]]
name = "prs-gtk3-copy"
path = "./src/main.rs"