summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: c51205eb823852ef3d33ad4bd9caff1acf3bacfb (plain)
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "gpg-tui"
version = "0.1.3"
description = "Manage your GnuPG keys with ease!"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/gpg-tui"
homepage = "https://github.com/orhun/gpg-tui"
repository = "https://github.com/orhun/gpg-tui"
keywords = ["gnupg", "gpg", "tui", "key", "management"]
categories = ["command-line-utilities"]
include = ["src/**/*", "assets/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md"]
edition = "2018"
default-run = "gpg-tui"

[features]
tui-tests = []
gpg-tests = []

[dependencies]
gpgme = "0.9.2"
crossterm = "0.19.0"
anyhow = "1.0.40"
chrono = "0.4.19"
unicode-width = "0.1.8"
copypasta-ext = "0.3.4"
colorsys = "0.6.3"
rust-embed = "5.9.0"

[dependencies.structopt]
version = "0.3.21"
default-features = false
features = ["suggestions", "color", "wrap_help"]

[dependencies.tui]
version = "0.15.0"
default-features = false
features = ["crossterm"]

[dependencies.image]
version = "0.23.14"
default-features = false
features = ["jpeg"]

[dev-dependencies]
pretty_assertions = "0.7.2"
dirs-next = "2.0.0"

[profile.dev]
opt-level = 0
debug = true
panic = "abort"

[profile.test]
opt-level = 0
debug = true

[profile.release]
opt-level = 3
debug = false
panic = "abort"
lto = true
codegen-units = 1

[profile.bench]
opt-level = 3
debug = false