rust-ipfs/vendor/unsigned-varint
Vladislav Tsarev 3dec7eeb01 Initial commit
2024-10-18 11:36:33 +03:00
..
benches Initial commit 2024-10-18 11:36:33 +03:00
examples Initial commit 2024-10-18 11:36:33 +03:00
src Initial commit 2024-10-18 11:36:33 +03:00
tests Initial commit 2024-10-18 11:36:33 +03:00
.cargo-checksum.json Initial commit 2024-10-18 11:36:33 +03:00
Cargo.lock Initial commit 2024-10-18 11:36:33 +03:00
Cargo.toml Initial commit 2024-10-18 11:36:33 +03:00
CHANGELOG.md Initial commit 2024-10-18 11:36:33 +03:00
LICENSE Initial commit 2024-10-18 11:36:33 +03:00
README.md Initial commit 2024-10-18 11:36:33 +03:00

unsigned-varint encoding

Unsigned varint encodes unsigned integers in 7-bit groups. The most significant bit (MSB) in each byte indicates if another byte follows (MSB = 1), or not (MSB = 0).

For details see: https://github.com/multiformats/unsigned-varint