serde-jam 0.0.14

JAM encoding with serde
Documentation
1
2
3
4
5
6
7
8
9
10
//! Number encoding and decoding

pub mod num;
pub mod vlen;

pub use {
    crate::with::compact::{deserialize, serialize},
    num::Numeric,
    vlen::{decode, decode_from, encode},
};