summaryrefslogtreecommitdiffstats
path: root/tool/Cargo.toml
blob: a96f7d85e82075950a615c6651fc022c5b67c9bb (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
[package]
name = "sequoia-tool"
description = "Command-line frontends for Sequoia"
version = "0.14.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.14.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.14" }
sequoia-autocrypt = { path = "../autocrypt", version = "0.14" }
sequoia-core = { path = "../core", version = "0.14" }
sequoia-net = { path = "../net", version = "0.14" }
sequoia-store = { path = "../store", version = "0.14" }
chrono = "0.4"
clap = "2.32.0"
failure = "0.1.2"
itertools = "0.8"
prettytable-rs = "0.8.0"
rpassword = "=4.0.3"
tempfile = "3.0.4"
crossterm = "0.13"
tokio-core = "0.1"

[build-dependencies]
clap = "2.27.1"

[dev-dependencies]
assert_cli = "0.6"
colored = ">= 1.6.1, <= 1.9.1"

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