| Crates.io | cith |
| lib.rs | cith |
| version | 0.1.0 |
| created_at | 2025-10-25 10:06:50.877684+00 |
| updated_at | 2025-10-25 10:06:50.877684+00 |
| description | CityHash hasher |
| homepage | https://github.com/awxkee/cith |
| repository | https://github.com/awxkee/cith |
| max_upload_size | |
| id | 1900034 |
| size | 97,907 |
CityHash
A CityHash implementation in pure Rust.
use cith::City64Hasher;
use std::hash::Hasher;
fn main() {
let mut hasher = City64Hasher::new_with_seed(42);
let data = b"Hash me!";
hasher.write(data);
let hash_value = hasher.finish();
println!("Hash: {}", hash_value);
}
This project is licensed under either of
at your option.