Extremely minimal and simple LEB128 u64
encoding/decoding.
```rust let input: u64 = 42; let mut buf = Vec::new(); leb128u64::encode(input, &mut buf); asserteq!(leb128u64::encodedlen(input), buf.len());
let output = leb128u64::decode(&buf[..]); asserteq!(input, output); ```