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
|
[package]
name = "sequoia-git"
description = "A tool for managing and enforcing a commit signing policy."
authors = [
"Neal H. Walfield <neal@sequoia-pgp.org>",
"Justus Winter <justus@sequoia-pgp.org>",
]
documentation = "https://sequoia-pgp.gitlab.io/sequoia-git/"
homepage = "https://sequoia-pgp.org/"
repository = "https://gitlab.com/sequoia-pgp/sequoia-git"
readme = "README.md"
keywords = ["cryptography", "openpgp", "pgp", "signing", "git"]
categories = ["cryptography", "authentication", "command-line-utilities",
"development-tools"]
version = "0.5.0"
license = "LGPL-2.0-or-later"
edition = "2021"
build = "build.rs"
rust-version = "1.85"
# Don't include the webpage in the published crate.
exclude = [ "/webpage" ]
[dependencies]
anyhow = "1"
buffered-reader = { version = "1.4" }
clap = { version = "4.0", features = [ "cargo", "derive", "env", "string", "wrap_help" ] }
dirs = { version = ">=5, <7" }
# We don't actually use the network so disable https or ssh support,
# which git2 enables by default.
git2 = { version = ">=0.19, <0.21", default-features = false }
once_cell = "1"
toml = ">=0.8, <2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
sequoia-directories = "0.1"
sequoia-net = { version = "0.30" }
sequoia-openpgp = { version = "2" }
sequoia-cert-store = { version = "0.7", default-features = false }
tempfile = "3"
thiserror = { version = ">=1, <3" }
tokio = { version = "1", features = ["full"] }
[build-dependencies]
anyhow = "1"
clap = { version = "4.0", features = [ "cargo", "derive", "env", "string", "wrap_help" ] }
clap_complete = "4"
clap_mangen = "0.2"
dirs = { version = ">=5, <7" }
roff = ">=0.2, <2"
sequoia-directories = "0.1"
sequoia-man = "0.3"
[dev-dependencies]
chrono = "0.4"
[[bin]]
name = "sq-git"
path = "src/main.rs"
|