summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2023-02-15 15:08:02 +0100
committerJustus Winter <justus@sequoia-pgp.org>2024-03-13 10:47:07 +0100
commit212a155fa6ecdae2ed9bb1f91df5aea510136896 (patch)
tree1f5d9ba03c3736b9485a9b85c844fdd36193b090
parentaf16b457ae822cf7a9b5d42f9ee28a3c8dc36383 (diff)
openpgp: Work-In-Progress implementation of RFC9760.
- In this branch, we will collect our work implementing the next revision of OpenPGP, RFC9760. - The ongoing work will happen in feature branches starting from this commit. A feature branch may also branch off from a commit further down in the crypto-refresh branch. - Small and complete changes may be collected into this branch, especially changes introducing fundamental types required by most feature brances, such as v6 fingerprints. - We may occasionally rebase this branch on top of the current main development branch, and use the opportunity to linearize it.
-rw-r--r--openpgp/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/openpgp/Cargo.toml b/openpgp/Cargo.toml
index fdf1ebff..3c77a8b3 100644
--- a/openpgp/Cargo.toml
+++ b/openpgp/Cargo.toml
@@ -1,4 +1,7 @@
[package]
+# Implementing v6 OpenPGP requires breaking the API. Prevent
+# accidental publishing.
+publish = false
name = "sequoia-openpgp"
description = "OpenPGP data types and associated machinery"
version = "1.19.0"