1# [RustCrypto]: DER Custom Derive Support 2 3[![crate][crate-image]][crate-link] 4[![Docs][docs-image]][docs-link] 5[![Build Status][build-image]][build-link] 6![Apache2/MIT licensed][license-image] 7![Rust Version][rustc-image] 8[![Project Chat][chat-image]][chat-link] 9 10Custom derive support for the `der` crate's `Choice` and `Sequence` traits: 11 12<https://github.com/RustCrypto/formats/tree/master/der> 13 14[Documentation][docs-link] 15 16## Minimum Supported Rust Version 17 18This crate requires **Rust 1.65** at a minimum. 19 20We may change the MSRV in the future, but it will be accompanied by a minor 21version bump. 22 23## License 24 25Licensed under either of: 26 27 * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) 28 * [MIT license](http://opensource.org/licenses/MIT) 29 30at your option. 31 32### Contribution 33 34Unless you explicitly state otherwise, any contribution intentionally submitted 35for inclusion in the work by you, as defined in the Apache-2.0 license, shall be 36dual licensed as above, without any additional terms or conditions. 37 38[//]: # (badges) 39 40[crate-image]: https://img.shields.io/crates/v/der_derive.svg 41[crate-link]: https://crates.io/crates/der_derive 42[docs-image]: https://docs.rs/der_derive/badge.svg 43[docs-link]: https://docs.rs/der_derive/ 44[build-image]: https://github.com/RustCrypto/formats/actions/workflows/der.yml/badge.svg 45[build-link]: https://github.com/RustCrypto/formats/actions/workflows/der.yml 46[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg 47[rustc-image]: https://img.shields.io/badge/rustc-1.65+-blue.svg 48[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg 49[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/300570-formats 50 51[//]: # (links) 52 53[RustCrypto]: https://github.com/rustcrypto 54