summaryrefslogtreecommitdiffstats
path: root/tool/Cargo.toml
blob: 0d5026820f09c46e58a597672cce4e7158d05755 (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
[package]
name = "sequoia-tool"
description = "Command-line frontends for Sequoia"
version = "0.17.0"
authors = [
    "Justus Winter <justus@sequoia-pgp.org>",
    "Kai Michaelis <kai@sequoia-pgp.org>",
    "Neal H. Walfield <neal@sequoia-pgp.org>",
]
build = "build.rs"
documentation = "https://docs.sequoia-pgp.org/0.17.0/sq"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia"
readme = "../README.md"
keywords = ["cryptography", "openpgp", "pgp", "encryption", "signing"]
categories = ["cryptography", "authentication", "command-line-utilities"]
license = "GPL-2.0-or-later"
edition = "2018"

[badges]
gitlab = { repository = "sequoia-pgp/sequoia" }
maintenance = { status = "actively-developed" }

[dependencies]
sequoia-openpgp = { path = "../openpgp", version = "0.17" }
sequoia-autocrypt = { path = "../autocrypt", version = "0.17" }
sequoia-core = { path = "../core", version = "0.17" }
sequoia-net = { path = "../net", version = "0.17" }
sequoia-store = { path = "../store", version = "0.17" }
anyhow = "1"
chrono = "0.4"
clap = "2.32.0"
itertools = "0.8"
prettytable-rs = "0.8.0"
tempfile = "3.0.4"
crossterm = "0.13"
tokio-core = "0.1"

# XXX: We need to pin some dependencies to keep our MSRV at 1.34.  If
# you are packaging Sequoia, feel free to drop these pins if your
# compiler is newer.
rpassword = "=4.0.3"

[build-dependencies]
clap = "2.27.1"

[dev-dependencies]
assert_cli = "0.6"
colored = "< 1.9.2"

[[bin]]
name = "sq"
path = "src/sq-usage.rs"