der 0.3.3

Pure Rust embedded-friendly implementation of the Distinguished Encoding Rules (DER) for Abstract Syntax Notation One (ASN.1) as described in ITU X.690 with full support for heapless no_std targets
Documentation
//! ASN.1 types.
//!
//! Includes built-in ASN.1 types and helper types for modeling ASN.1 concepts.

pub(crate) mod any;
#[cfg(feature = "big-uint")]
pub(crate) mod big_uint;
pub(crate) mod bit_string;
pub(crate) mod boolean;
pub(crate) mod choice;
pub(crate) mod generalized_time;
pub(crate) mod ia5_string;
pub(crate) mod integer;
pub(crate) mod null;
pub(crate) mod octet_string;
#[cfg(feature = "oid")]
pub(crate) mod oid;
pub(crate) mod optional;
pub(crate) mod printable_string;
pub(crate) mod sequence;
pub(crate) mod set_of;
pub(crate) mod utc_time;
pub(crate) mod utf8_string;