asn1_der/
lib.rs

1#![doc = include_str!("../README.md")]
2// Handle no_std if set
3#![cfg_attr(not(feature = "std"), no_std)]
4
5#[macro_use]
6#[doc(hidden)]
7pub mod error;
8mod data;
9#[doc(hidden)]
10pub mod der;
11#[cfg(feature = "native_types")]
12pub mod typed;
13
14// Reexport common types
15#[cfg(all(feature = "std", not(feature = "no_panic")))]
16pub use crate::data::VecBacking;
17pub use crate::{
18    data::{CopyingSource, CountingSource, Sink, SliceSink, Source},
19    der::DerObject,
20    error::{Asn1DerError, Asn1DerErrorVariant, ErrorChain},
21};