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
- Host: GitHub
- URL: https://github.com/jabr/rapidhash-u128
- Owner: jabr
- License: mit
- Created: 2024-09-04T06:55:26.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-10-02T19:30:25.000Z (8 months ago)
- Last Synced: 2025-04-13T05:12:59.720Z (about 2 months ago)
- Language: Rust
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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).