Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions der/derive/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.4.1 (2021-09-13)
### Changed
- Moved to `formats` repo ([#2])

[#2]: https://github.com/RustCrypto/formats/pull/2

## 0.4.0 (2021-06-07)
### Changed
- Generated code updates which ensure compatibility with upstream `der` crate
changes
- Update generated code to support the corresponding `der` crate changes

## 0.3.0 (2021-03-21)
### Added
Expand Down
9 changes: 3 additions & 6 deletions der/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
[package]
name = "der_derive"
version = "0.4.0" # Also update html_root_url in lib.rs when bumping this
description = """
Procedural macro for automatically deriving the `der` crate's `Choice` and
`Message` traits
"""
version = "0.4.1" # Also update html_root_url in lib.rs when bumping this
description = "Custom derive support for the `der` crate's `Choice` and `Message` traits"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 OR MIT"
edition = "2018"
documentation = "https://docs.rs/der"
repository = "https://github.com/RustCrypto/formats/tree/master/der"
repository = "https://github.com/RustCrypto/formats/tree/master/der/derive"
categories = ["cryptography", "data-structures", "encoding", "no-std"]
keywords = ["asn1", "der", "crypto", "itu", "pkcs"]
readme = "README.md"
Expand Down
9 changes: 4 additions & 5 deletions der/derive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@

[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
[![Build Status][build-image]][build-link]
![Apache2/MIT licensed][license-image]
![Rust Version][rustc-image]
[![Project Chat][chat-image]][chat-link]
[![Build Status][build-image]][build-link]

Procedural macro for automatically deriving the `der` crate's `Choice` and
`Message` traits.
Custom derive support for the `der` crate's `Choice` and `Message` traits.

[Documentation][docs-link]

Expand Down Expand Up @@ -36,9 +35,9 @@ dual licensed as above, without any additional terms or conditions.
[build-image]: https://github.com/RustCrypto/formats/actions/workflows/der.yml/badge.svg
[build-link]: https://github.com/RustCrypto/formats/actions/workflows/der.yml
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.46+-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.51+-blue.svg
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260052-utils
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/300570-formats

[//]: # (links)

Expand Down
1 change: 0 additions & 1 deletion der/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@
//! [RustCrypto]: https://github.com/rustcrypto
//! [`pkcs5`]: https://docs.rs/pkcs5/
//! [`pkcs8`]: https://docs.rs/pkcs8/
//! [RustCrypto/utils#370]: https://github.com/RustCrypto/utils/issues/370
//! [RFC 5280 Section 4.1.1.2]: https://tools.ietf.org/html/rfc5280#section-4.1.1.2
//! [A Layman's Guide to a Subset of ASN.1, BER, and DER]: https://luca.ntop.org/Teaching/Appunti/asn1.html
//! [A Warm Welcome to ASN.1 and DER]: https://letsencrypt.org/docs/a-warm-welcome-to-asn1-and-der/
Expand Down