An open API service indexing awesome lists of open source software.

https://github.com/pseitz/vint32_rust

fast vint u32 encoding for rust
https://github.com/pseitz/vint32_rust

Last synced: 12 months ago
JSON representation

fast vint u32 encoding for rust

Awesome Lists containing this project

README

          

## Vint32

Fast vint u32 encoding for rust. Uses at most 5 bytes.

# Examples
```
use vint32::encode_varint_into;
let mut output = vec![];
encode_varint_into(&mut output, 50);
assert_eq!(output.len(), 1);
```

## Tests

`cargo test --all-features`