| Crates.io | picky-asn1-der |
| lib.rs | picky-asn1-der |
| version | 0.5.2 |
| created_at | 2019-12-18 18:50:59.936658+00 |
| updated_at | 2025-01-16 18:34:32.634532+00 |
| description | An ASN.1-DER subset for serde |
| homepage | |
| repository | https://github.com/Devolutions/picky-rs |
| max_upload_size | |
| id | 190359 |
| size | 93,338 |
Compatible with rustc 1.61. Minimal rustc version bumps happen only with minor number bumps in this project.
Portions of project serde_asn1_der are held by Keziah Biermann, 2019 as part of this project.
This crate implements an ASN.1-DER subset for serde.
The following types have built-in support:
bool: The ASN.1-BOOLEAN-typeu8, u16, u32, u64, u128, usize: The ASN.1-INTEGER-type(): The ASN.1-NULL-type&[u8], Vec<u8>: The ASN.1-OctetString-type&str, String: The ASN.1-UTF8String-typeMore advanced types are supported through wrappers:
Everything sequence-like combined out of these types is also supported out of the box.
Check out doc.rs for tested code examples.