Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
src/ | 25-Apr-2025 | - | 2,802 | 2,015 | ||
.cargo-checksum.json | D | 25-Apr-2025 | 1.3 KiB | 1 | 1 | |
Android.bp | D | 25-Apr-2025 | 909 | 36 | 31 | |
CHANGELOG.md | D | 25-Apr-2025 | 3.9 KiB | 125 | 96 | |
Cargo.toml | D | 25-Apr-2025 | 1.2 KiB | 50 | 44 | |
LICENSE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-APACHE | D | 25-Apr-2025 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 25-Apr-2025 | 1.1 KiB | 26 | 22 | |
METADATA | D | 25-Apr-2025 | 423 | 18 | 17 | |
MODULE_LICENSE_APACHE2 | D | 25-Apr-2025 | 0 | |||
README.md | D | 25-Apr-2025 | 1.7 KiB | 54 | 36 | |
cargo_embargo.json | D | 25-Apr-2025 | 166 | 11 | 10 | |
rules.mk | D | 25-Apr-2025 | 544 | 18 | 11 |
README.md
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