sequoia-git 0.6.0

A tool for managing and enforcing a commit signing policy.
Documentation
[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.6.0"
license = "LGPL-2.0-or-later"
edition = "2021"
build = "build.rs"
rust-version = "1.85"
resolver = "3"
# 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.20"
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 = { version = ">=0.2, <0.4" }
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"

[lints.clippy]
# default clippy lint levels matching the common-ci environment:
# https://gitlab.com/sequoia-pgp/common-ci/-/blob/main/templates/precheck.yml
suspicious = { level = "deny", priority = -1 }
style = { level = "allow", priority = -1 }
complexity = { level = "allow", priority = -1 }