{"id":23823393,"url":"https://github.com/mbudde/treap-rs","last_synced_at":"2025-07-22T15:07:52.756Z","repository":{"id":26997908,"uuid":"30461874","full_name":"mbudde/treap-rs","owner":"mbudde","description":"A randomized treap implementation in Rust","archived":false,"fork":false,"pushed_at":"2018-10-17T17:14:38.000Z","size":578,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-04T22:08:02.764Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mbudde.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-02-07T16:37:40.000Z","updated_at":"2019-09-06T01:22:06.000Z","dependencies_parsed_at":"2022-08-31T08:25:48.163Z","dependency_job_id":null,"html_url":"https://github.com/mbudde/treap-rs","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/mbudde/treap-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbudde%2Ftreap-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbudde%2Ftreap-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbudde%2Ftreap-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbudde%2Ftreap-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mbudde","download_url":"https://codeload.github.com/mbudde/treap-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mbudde%2Ftreap-rs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266516229,"owners_count":23941373,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-01-02T10:27:03.393Z","updated_at":"2025-07-22T15:07:52.730Z","avatar_url":"https://github.com/mbudde.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# treap-rs\n\n[![Build Status](https://travis-ci.org/mbudde/treap-rs.svg)](https://travis-ci.org/mbudde/treap-rs)\n\nA randomized treap implementation.\n\n[Documentation](http://mbudde.github.io/treap-rs/treap/index.html)\n\n## Example\n\n```rust\n\nextern crate treap;\n\nuse treap::TreapMap;\n\nfn main() {\n    let mut t = TreapMap::new();\n\n    for i in 0..10 {\n        t.insert(i, i);\n    }\n\n    for (k, v) in \u0026mut t {\n        *v = *v * *v;\n    }\n\n    assert_eq!(t.get(\u00265), Some(\u002625));\n    assert_eq!(t.remove(\u00263), Some(9));\n}\n```\n\n## Usage\n\nAdd this to your `Cargo.toml`:\n\n```toml\n[dependencies]\ntreap = \"*\"\n```\n\nand this to your crate root:\n\n```rust\nextern crate treap;\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbudde%2Ftreap-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmbudde%2Ftreap-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmbudde%2Ftreap-rs/lists"}