[package] name = "sequoia-sq" description = "Command-line frontends for Sequoia" version = "0.27.0" authors = [ "Azul ", "Heiko Schaefer ", "Igor Matuszewski ", "Justus Winter ", "Kai Michaelis ", "Lars Wirzenius ", "Neal H. Walfield ", "Nora Widdecke ", "Wiktor Kwapisiewicz ", ] build = "build.rs" documentation = "https://docs.rs/sequoia-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" rust-version = "1.60" [badges] gitlab = { repository = "sequoia-pgp/sequoia" } maintenance = { status = "actively-developed" } [dependencies] buffered-reader = { path = "../buffered-reader", version = "1.0.0", default-features = false, features = ["compression-deflate"] } sequoia-openpgp = { path = "../openpgp", version = "1.1", default-features = false, features = ["compression-deflate"] } sequoia-autocrypt = { path = "../autocrypt", version = "0.24", default-features = false, optional = true } sequoia-net = { path = "../net", version = "0.25", default-features = false } anyhow = "1.0.18" chrono = "0.4.10" clap = { version = "3", features = ["derive", "env", "wrap_help"] } itertools = "0.10" tempfile = "3.1" term_size = "0.3" tokio = { version = "1.13.1" } rpassword = "6.0" serde_json = "1.0.80" serde = { version = "1.0.137", features = ["derive"] } roff = "0.2.1" [build-dependencies] anyhow = "1.0.18" clap = { version = "3", features = ["derive", "wrap_help"] } clap_complete = "3" chrono = "0.4.10" sequoia-openpgp = { path = "../openpgp", version = "1.0.0", default-features = false } sequoia-net = { path = "../net", version = "0.25", default-features = false } subplot-build = "0.5.0" cfg-if = "1" [dev-dependencies] subplotlib = "0.5.0" fehler = "1.0.0" assert_cmd = "2.0.4" predicates = "2" [[bin]] name = "sq" path = "src/sq.rs" bench = false [features] default = [ "crypto-nettle", "compression-bzip2", "autocrypt", ] crypto-nettle = ["sequoia-openpgp/crypto-nettle"] crypto-cng = ["sequoia-openpgp/crypto-cng"] compression-bzip2 = ["buffered-reader/compression-bzip2", "sequoia-openpgp/compression-bzip2"] autocrypt = ["sequoia-autocrypt"]