1[package]
2name = "sequoia-sop"
3description = "An implementation of the Stateless OpenPGP Command Line Interface using Sequoia"
4version = "0.19.0"
5authors = [
6    "Justus Winter <justus@sequoia-pgp.org>",
7]
8documentation = "https://docs.sequoia-pgp.org/0.19.0/sop"
9homepage = "https://sequoia-pgp.org/"
10repository = "https://gitlab.com/sequoia-pgp/sequoia"
11readme = "README.md"
12keywords = ["cryptography", "openpgp", "pgp", "sop", "stateless-openpgp"]
13categories = ["cryptography", "command-line-utilities"]
14license = "GPL-2.0-or-later"
15edition = "2018"
16
17[badges]
18gitlab = { repository = "sequoia-pgp/sequoia" }
19maintenance = { status = "actively-developed" }
20
21[dependencies]
22sequoia-openpgp = { path = "../openpgp", version = "0.19" }
23anyhow = "1"
24chrono = "0.4"
25structopt = { version = "0.3.8", default-features = false }
26thiserror = "1"
27
28[[bin]]
29name = "sqop"
30path = "src/main.rs"
31