Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This commit adds a deprecation notice to README.md for the
pkcs7
crate announcingcms
as its official successor.Notably
pkcs7
predates many of the other format-related crates and uses entirely reference-based conventions which we migrated away from in thex509-cert
crate.cms
uses the newer conventions, and is more complete as a Cryptographic Message Syntax implementation.We will not be accepting pull requests for
pkcs7
and are leaving its source code for now only to aid in porting functionality not yet present in thecms
crate.When the next breaking release of
der
occurs, we will delete thepkcs7
source code from the repository, leaving only the deprecation notice to help assist people migrating.Closes #1045.