openpgp-key-janitor/Cargo.toml
Jan Christian Grünhage 1b272fa26e
initial commit
2023-05-30 19:36:14 +02:00

23 lines
784 B
TOML

[package]
name = "openpgp-key-janitor"
version = "0.1.0"
authors = ["Jan Christian Grünhage <jan.christian@gruenhage.xyz>"]
edition = "2021"
description = "CLI for OpenPGP certificate maintenance"
repository = "https://git.jcg.re/jcgruenhage/openpgp-key-janitor"
license-file = "LICENSE.md"
categories = ["command-line-utilities", "cryptography"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.3.0", features = ["derive"] }
sequoia-openpgp = { version = "1.16.0", features = ["serde"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_yaml = "0.9.21"
[patch.crates-io]
sequoia-openpgp = { path = "/home/jcgruenhage/dev/gitlab.com/sequoia-pgp/sequoia/openpgp" }