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 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.79"
name = "sequoia-sop"
version = "0.37.2"
authors = ["Justus Winter <justus@sequoia-pgp.org>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An implementation of the Stateless OpenPGP Interface using Sequoia"
homepage = "https://sequoia-pgp.org/"
documentation = "https://docs.rs/sequoia-sop"
readme = "README.md"
keywords = [
"cryptography",
"openpgp",
"pgp",
"sop",
"stateless-openpgp",
]
categories = [
"cryptography",
"command-line-utilities",
]
license = "GPL-2.0-or-later"
repository = "https://gitlab.com/sequoia-pgp/sequoia-sop"
[badges.gitlab]
repository = "sequoia-pgp/sequoia-sop"
[badges.maintenance]
status = "actively-developed"
[features]
cli = [
"sop/cli",
"dep:sequoia-policy-config",
]
cliv = [
"sop/cliv",
"dep:sequoia-policy-config",
]
default = ["sequoia-openpgp/default"]
[lib]
name = "sequoia_sop"
path = "src/lib.rs"
[[bin]]
name = "sqop"
path = "src/bin/sqop.rs"
required-features = ["cli"]
[[bin]]
name = "sqopv"
path = "src/bin/sqopv.rs"
required-features = ["cliv"]
[dependencies.anyhow]
version = "1.0.18"
[dependencies.sequoia-openpgp]
version = "2"
default-features = false
[dependencies.sequoia-policy-config]
version = "0.8"
optional = true
default-features = false
[dependencies.sequoia-wot]
version = "0.14.0"
default-features = false
[dependencies.sop]
version = "0.8.1"
[build-dependencies.sequoia-openpgp]
version = "2"
default-features = false
[build-dependencies.sop]
version = "0.8.1"
|