{"id":25131934,"url":"https://github.com/robotomize/rs-bf","last_synced_at":"2025-08-15T15:17:51.208Z","repository":{"id":223373949,"uuid":"760108437","full_name":"robotomize/rs-bf","owner":"robotomize","description":"An lightweight Bloom Filter implementation in Rust","archived":false,"fork":false,"pushed_at":"2024-11-18T06:32:58.000Z","size":48,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-08T14:15:57.626Z","etag":null,"topics":["bloom-filter","hash","rust","rust-lang"],"latest_commit_sha":null,"homepage":"","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/robotomize.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":"2024-02-19T19:54:52.000Z","updated_at":"2024-09-08T18:11:37.000Z","dependencies_parsed_at":"2024-02-19T22:58:58.032Z","dependency_job_id":"89f0fe52-86f9-44bd-a1dd-e2bca107caa5","html_url":"https://github.com/robotomize/rs-bf","commit_stats":null,"previous_names":["robotomize/bf"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotomize%2Frs-bf","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotomize%2Frs-bf/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotomize%2Frs-bf/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robotomize%2Frs-bf/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robotomize","download_url":"https://codeload.github.com/robotomize/rs-bf/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246911471,"owners_count":20853657,"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":["bloom-filter","hash","rust","rust-lang"],"created_at":"2025-02-08T14:16:00.186Z","updated_at":"2025-04-03T00:11:41.106Z","avatar_url":"https://github.com/robotomize.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bf\nThis project provides a simple and efficient implementation of a Bloom Filter in the Rust programming language. A Bloom Filter is a data structure that allows for fast membership queries in a set with minimal memory usage.\n\n## Why\nThis is a learning project, I'm trying to use rust.\n\n## Features\n* Ease of Use: A straightforward and easy-to-understand API for adding and checking elements.\n* Efficiency: Uses minimal memory, making it ideal for large datasets.\n* Testing: Includes a suite of tests to ensure correct operation.\n\n## Installation\nAdd the following dependency to your Cargo.toml:\n```toml\n[dependencies]\nrust-bloom-filter = \"0.1.0\"\n\n```\n## Example Usage\n\n```rust\nuse rust_bloom_filter::BloomFilter;\n\nfn main() {\n    let mut bloom_filter = BloomFilter::new(10000,   3);\n    \n    bloom_filter.add(\"hello\");\n    bloom_filter.add(\"world\");\n    \n    println!(\"Contains 'hello': {}\", bloom_filter.contains(\"hello\")); \n    println!(\"Contains 'world': {}\", bloom_filter.contains(\"world\")); \n    println!(\"Contains 'foo': {}\", bloom_filter.contains(\"foo\")); \n}\n\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobotomize%2Frs-bf","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobotomize%2Frs-bf","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobotomize%2Frs-bf/lists"}