asn1-compiler 0.1.2

ASN.1 Compiler in Rust.
//! Submodule for ASN.1 Specific handling of the Parser

/// ASN.1 Modules (Single ASN.1 Files) handling functionality.
mod module;
pub(super) use module::parse_module;

/// ASN.1 Definitions (Type, Value, CLASS etc.)
mod defs;

/// Implementation of Parsing of ASN.1 Types.
pub(crate) mod types;

/// Implementation of Parsing of ASN.1 Values (`Type := Value`)
pub(crate) mod values;

/// Implementation of Object Identifier.
mod oid;

/// Output Types of the Parsers.
pub(crate) mod structs;