base128 0.1.0

Ground for base128 implementation, highly efficient but not common
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # Base128
//! **This is not usable yet, no implementation was done. It's mostly a namespace reservation crate now, but I'm implementing this**
//!
//! This crate provides a simple base128 encoding and decoding.

use std::error::Error;

fn encode(data: impl AsRef<[u8]>) -> Vec<u8> {
    unimplemented!()
}

fn decode(data: impl AsRef<[u8]>) -> Result<Vec<u8>, Box<dyn Error>> {
    unimplemented!()
}