{"id":50836779,"url":"https://github.com/arclabs561/qplan","last_synced_at":"2026-06-14T04:04:34.571Z","repository":{"id":351432562,"uuid":"1143602393","full_name":"arclabs561/qplan","owner":"arclabs561","description":"Query planning primitives","archived":false,"fork":false,"pushed_at":"2026-06-10T17:47:30.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-10T18:13:01.689Z","etag":null,"topics":["query-planning","rust"],"latest_commit_sha":null,"homepage":"https://docs.rs/qplan","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/arclabs561.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-27T19:30:33.000Z","updated_at":"2026-06-10T17:48:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/arclabs561/qplan","commit_stats":null,"previous_names":["arclabs561/qplan"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arclabs561/qplan","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arclabs561%2Fqplan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arclabs561%2Fqplan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arclabs561%2Fqplan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arclabs561%2Fqplan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arclabs561","download_url":"https://codeload.github.com/arclabs561/qplan/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arclabs561%2Fqplan/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34308655,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-14T02:00:07.365Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["query-planning","rust"],"created_at":"2026-06-14T04:04:33.803Z","updated_at":"2026-06-14T04:04:34.564Z","avatar_url":"https://github.com/arclabs561.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# qplan\n\nCompile typed query expressions (`qexpr`) into execution-friendly query plans.\n\nThis crate is intentionally narrow today: it supports compiling a subset of `QExpr`\ninto a conjunctive plan (`AND` of terms/phrases/near constraints). Unsupported operators\nreturn explicit errors so downstream systems can choose a fallback.\n\n## Usage\n\n```toml\n[dependencies]\nqplan = { git = \"https://github.com/arclabs561/qplan\" }\n```\n\nExample:\n\n```rust\nuse qexpr::{Phrase, QExpr, Term};\nuse qplan::compile_conjunctive;\n\nlet q = QExpr::And(vec![\n    QExpr::Term(Term::new(\"alpha\")),\n    QExpr::Phrase(Phrase::new(vec![Term::new(\"new\"), Term::new(\"york\")])),\n]);\n\nlet p = compile_conjunctive(\u0026q).unwrap();\nassert!(!p.bag_terms.is_empty());\n```\n\n## Development\n\n```bash\ncargo test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farclabs561%2Fqplan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farclabs561%2Fqplan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farclabs561%2Fqplan/lists"}