rawcode 0.3.2

Implements a simple as-is encoding format
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]
#![cfg_attr(not(feature = "std"), no_std)]

#[macro_use]
pub mod error;
pub mod coding;

// Re-export coding traits and types
pub use coding::*;

// Re-export #[derive(Rawcode)]
#[cfg(feature = "rawcode_derive")]
#[allow(unused_imports)]
#[macro_use]
extern crate rawcode_derive;
#[cfg(feature = "rawcode_derive")]
#[doc(hidden)]
pub use rawcode_derive::*;