leb128-u64

Extremely minimal and simple LEB128 u64 encoding/decoding.

Cargo Documentation License

Example

```rust let input: u64 = 42; let mut buf = [0u8; 10]; leb128_u64::encode(input, &mut buf[..]);

let output = leb128u64::decode(&buf[..]); asserteq!(input, output); ```