From 02e61f0758e93b44a054a01b4137ea25ff7dd5ec Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Mon, 26 Nov 2018 17:24:47 +0100 Subject: sqv: Move sqv into a new crate. - This allows us to use sequoia-openpgp without compression support reducing binary size and trusted computing base. --- sqv/Cargo.toml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 sqv/Cargo.toml (limited to 'sqv/Cargo.toml') diff --git a/sqv/Cargo.toml b/sqv/Cargo.toml new file mode 100644 index 00000000..f9edb942 --- /dev/null +++ b/sqv/Cargo.toml @@ -0,0 +1,36 @@ +[package] +name = "sequoia-sqv" +description = "A simple signature verification program" +version = "0.1.0" +authors = [ + "Justus Winter ", + "Kai Michaelis ", + "Neal H. Walfield ", +] +documentation = "https://docs.sequoia-pgp.org/sqv" +homepage = "https://sequoia-pgp.org/" +repository = "https://gitlab.com/sequoia-pgp/sequoia" +readme = "README.md" +keywords = ["cryptography", "openpgp", "pgp", "verification", "detached signatures"] +categories = ["cryptography", "command-line-utilities"] +license = "GPL-3.0" + +[badges] +gitlab = { repository = "https://gitlab.com/sequoia-pgp/sequoia" } +maintenance = { status = "actively-developed" } + +[dependencies] +sequoia-openpgp = { path = "../openpgp", version = "0.1", default-features = false } +clap = "2.32.0" +failure = "0.1.2" +time = "0.1.38" + +[build-dependencies] +clap = "2.27.1" + +[dev-dependencies] +assert_cli = "0.6" + +[[bin]] +name = "sqv" +path = "src/sqv-usage.rs" -- cgit v1.2.3