{"id":28707882,"url":"https://github.com/owengombas/murmurs","last_synced_at":"2025-06-14T17:42:18.308Z","repository":{"id":298594949,"uuid":"1000490750","full_name":"owengombas/murmurs","owner":"owengombas","description":"🫆 A reliable and production-ready implementation of the Murmur3 hash function in Rust","archived":false,"fork":false,"pushed_at":"2025-06-12T09:47:45.000Z","size":1601,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-12T10:24:36.760Z","etag":null,"topics":["hash-function","hashing","murmur3","rust"],"latest_commit_sha":null,"homepage":"https://owengombas.github.io/murmurs/murmurs/","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/owengombas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-11T21:44:49.000Z","updated_at":"2025-06-12T09:47:48.000Z","dependencies_parsed_at":"2025-06-12T10:24:55.411Z","dependency_job_id":null,"html_url":"https://github.com/owengombas/murmurs","commit_stats":null,"previous_names":["owengombas/murmur3-rust","owengombas/murmurs"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/owengombas/murmurs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owengombas%2Fmurmurs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owengombas%2Fmurmurs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owengombas%2Fmurmurs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owengombas%2Fmurmurs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owengombas","download_url":"https://codeload.github.com/owengombas/murmurs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owengombas%2Fmurmurs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259858511,"owners_count":22922945,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["hash-function","hashing","murmur3","rust"],"created_at":"2025-06-14T17:42:04.729Z","updated_at":"2025-06-14T17:42:18.296Z","avatar_url":"https://github.com/owengombas.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🫆 murmu*rs*: A Reliable Murmur3 Hash in Rust\nmurmu*rs* provides a reliable and production-ready implementation of the [Murmur3 hash function](https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp), faithfully translated from the original C++ reference and usable in the same way.\n\nThe core logic resides in [`src/murmur3.rs`](src/murmur3.rs), and its correctness is verified against the latest version of the [official smhasher implementation](https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp) through tests using C FFI bindings.\n\n## 📦 Installation\nAdd the following to your `Cargo.toml`:\n\n```toml\n[dependencies]\nmurmurs = \"1.0\" # or the latest published version\n```\n\n## 🚀 Usage\n```rust\nuse murmurs::murmur3_x86_32;\n\nfn main() {\n    let hash = murmur3_x86_32(b\"hello world\", 0);\n    println!(\"{}\", hash);\n}\n```\n\nThen run:\n```sh\ncargo run\n```\n\n## ✅ Testing\nThe implementation is automatically tested against the reference [C++ implementation from smhasher](https://github.com/aappleby/smhasher/blob/master/src/MurmurHash3.cpp) using FFI bindings.\n\nTo run the tests:\n```sh\ncargo test\n```\n\n## 🔒 Status\n- ✅ Verified against the original `MurmurHash3.cpp`\n- ✅ Consistent 32-bit and 128-bit output\n- ✅ Portable and deterministic\n- ✅ Can be used the same way as the C++ reference\n ","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowengombas%2Fmurmurs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowengombas%2Fmurmurs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowengombas%2Fmurmurs/lists"}