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

https://github.com/jabr/rapidhash-u128

Rapidhash in Rust
https://github.com/jabr/rapidhash-u128

Last synced: about 2 months ago
JSON representation

Rapidhash in Rust

Awesome Lists containing this project

README

        

# rapidhash-u128

Bare-bones Rust implementation of rapidhash for u128 values, based on original [rapidhash implementation in C](https://github.com/Nicoshev/rapidhash).

## Usage

Library:
```
use rapidhash_u128::hash;
hash(0xff) // => 5200326291411116507
```

Binary:
```
$ rapidhash-u128 ff
RapidHash(255) = 5200326291411116507
```

## Related

https://github.com/hoxxep/rapidhash - A full-featured Rust implementation of Rapidhash

## License

This project is licensed under the terms of the [MIT license](LICENSE.txt).