routers_codec 0.1.5

Encoding and Decoding Primitives for Routers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![doc = include_str!("../docs/codec.md")]

extern crate alloc;

#[cfg(feature = "mimalloc")]
use mimalloc::MiMalloc;

#[cfg_attr(feature = "mimalloc", global_allocator)]
#[cfg(feature = "mimalloc")]
static GLOBAL: MiMalloc = MiMalloc;

pub mod osm;
pub mod primitive;