17 lines
394 B
Rust
17 lines
394 B
Rust
// file: kb_decoder_amm_aldrin_v2/src/lib.rs
|
|
// version: 2
|
|
|
|
//! Decoder crate for `amm_aldrin_v2`.
|
|
#![warn(missing_docs)]
|
|
#![deny(unreachable_pub)]
|
|
#![forbid(unsafe_code)]
|
|
|
|
mod constants;
|
|
mod decoder;
|
|
|
|
/// Canonical tracing target for this crate.
|
|
pub(crate) use crate::constants::TRACING_TARGET;
|
|
|
|
/// Exposes the decoder type implemented by this crate.
|
|
pub use crate::decoder::AldrinV2Decoder;
|