[package]
edition = "2024"
rust-version = "1.92"
name = "uselesskey-pgp"
version = "0.2.0"
authors = ["Effortless Metrics <opensource@effortlessmetrics.com>"]
build = false
exclude = [
"fuzz/**",
"corpus/**",
"**/*.der",
"**/*.pem",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenPGP key fixtures (armored and binary) for deterministic and random tests."
homepage = "https://github.com/EffortlessMetrics/uselesskey"
documentation = "https://docs.rs/uselesskey-pgp"
readme = "README.md"
keywords = [
"openpgp",
"pgp",
"fixtures",
"testing",
"deterministic",
]
categories = [
"development-tools::testing",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EffortlessMetrics/uselesskey"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "uselesskey_pgp"
path = "src/lib.rs"
[[test]]
name = "cache_coherence"
path = "tests/cache_coherence.rs"
[[test]]
name = "format_roundtrip"
path = "tests/format_roundtrip.rs"
[[test]]
name = "mutant_killers"
path = "tests/mutant_killers.rs"
[[test]]
name = "pgp_prop"
path = "tests/pgp_prop.rs"
[[test]]
name = "pgp_unit"
path = "tests/pgp_unit.rs"
[[test]]
name = "snapshots_pgp"
path = "tests/snapshots_pgp.rs"
[[test]]
name = "testutil"
path = "tests/testutil.rs"
[dependencies.pgp]
version = "0.19.0"
default-features = false
[dependencies.uselesskey-core]
version = "0.2.0"
[dev-dependencies.insta]
version = "1.46.3"
features = [
"yaml",
"redactions",
]
[dev-dependencies.proptest]
version = "1.10.0"
[dev-dependencies.serde]
version = "1.0.228"
features = ["derive"]