{"id":15370240,"url":"https://github.com/jedisct1/rust-hyperloglog","last_synced_at":"2025-04-04T11:13:35.845Z","repository":{"id":12083362,"uuid":"14671113","full_name":"jedisct1/rust-hyperloglog","owner":"jedisct1","description":"A HyperLogLog implementation in Rust.","archived":false,"fork":false,"pushed_at":"2025-03-07T09:14:10.000Z","size":126,"stargazers_count":50,"open_issues_count":3,"forks_count":18,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-28T10:08:14.960Z","etag":null,"topics":["hyperloglog","rust","sketching"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jedisct1.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}},"created_at":"2013-11-24T22:56:14.000Z","updated_at":"2025-03-07T09:13:20.000Z","dependencies_parsed_at":"2024-10-16T11:01:40.367Z","dependency_job_id":"82043f32-35d0-41e6-88af-f38cae45392d","html_url":"https://github.com/jedisct1/rust-hyperloglog","commit_stats":{"total_commits":117,"total_committers":8,"mean_commits":14.625,"dds":0.07692307692307687,"last_synced_commit":"a710935d98c222c0a4fa3b68c79753145fb6ac61"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedisct1%2Frust-hyperloglog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedisct1%2Frust-hyperloglog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedisct1%2Frust-hyperloglog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jedisct1%2Frust-hyperloglog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jedisct1","download_url":"https://codeload.github.com/jedisct1/rust-hyperloglog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247166168,"owners_count":20894654,"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":["hyperloglog","rust","sketching"],"created_at":"2024-10-01T13:40:32.994Z","updated_at":"2025-04-04T11:13:35.824Z","avatar_url":"https://github.com/jedisct1.png","language":"Rust","readme":"hyperloglog\n===========\n\nA [HyperLogLog](https://static.googleusercontent.com/media/research.google.com/en/us/pubs/archive/40671.pdf) implementation in Rust, with bias correction.\n\nInstallation: use [Cargo](http://crates.io):\n\n```toml\n[dependencies]\nhyperloglog = \"0\"\n```\n\nUsage:\n\n```rust\nlet mut hll = HyperLogLog::new(error_rate);\nhll.insert(\u0026\"test1\");\nhll.insert(\u0026\"test2\");\nlet card_estimation = hll.len();\n\nlet mut hll2 = HyperLogLog::new_from_template(\u0026hll);\nhll2.insert(\u0026\"test3\");\n\nhll.merge(\u0026hll2);\n```\n\n## Optional Cargo features:\n\n- `with_serde`: enable serialization via `serde`.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjedisct1%2Frust-hyperloglog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjedisct1%2Frust-hyperloglog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjedisct1%2Frust-hyperloglog/lists"}