{"id":22871378,"url":"https://github.com/stainless-steel/vector","last_synced_at":"2025-05-05T22:21:23.153Z","repository":{"id":223285553,"uuid":"759847835","full_name":"stainless-steel/vector","owner":"stainless-steel","description":"Vector database","archived":false,"fork":false,"pushed_at":"2024-05-09T16:58:38.000Z","size":37,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-05-03T10:18:15.493Z","etag":null,"topics":["database"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stainless-steel.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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-19T13:01:03.000Z","updated_at":"2025-04-10T12:09:40.000Z","dependencies_parsed_at":"2024-02-19T13:11:04.408Z","dependency_job_id":"bf2f8058-88e7-42e5-8f4d-ba0bc2f85801","html_url":"https://github.com/stainless-steel/vector","commit_stats":null,"previous_names":["stainless-steel/vector"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stainless-steel%2Fvector","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stainless-steel%2Fvector/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stainless-steel%2Fvector/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stainless-steel%2Fvector/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stainless-steel","download_url":"https://codeload.github.com/stainless-steel/vector/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252584578,"owners_count":21771986,"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":["database"],"created_at":"2024-12-13T13:18:47.109Z","updated_at":"2025-05-05T22:21:23.137Z","avatar_url":"https://github.com/stainless-steel.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vector [![Package][package-img]][package-url] [![Documentation][documentation-img]][documentation-url] [![Build][build-img]][build-url]\n\nThe package provides a vector database allowing for efficient search of nearest\nneighbors.\n\n## Example\n\n```rust\nuse vector::Index;\n\nlet vectors = vec![\n    [4.0, 2.0],\n    [5.0, 7.0],\n    [2.0, 9.0],\n    [7.0, 8.0],\n];\nlet index = Index::build(\u0026vectors, 1, 1, 42);\n\nlet query = [5.0, 5.0];\nlet (indices, distances): (Vec\u003c_\u003e, Vec\u003c_\u003e) = index\n    .search(\u0026vectors, \u0026query, 2)\n    .into_iter()\n    .unzip();\nassert_eq!(indices, \u0026[1, 0]);\n```\n\n## Contribution\n\nYour contribution is highly appreciated. Do not hesitate to open an issue or a\npull request. Note that any contribution submitted for inclusion in the project\nwill be licensed according to the terms given in [LICENSE.md](LICENSE.md).\n\n[build-img]: https://github.com/stainless-steel/vector/workflows/build/badge.svg\n[build-url]: https://github.com/stainless-steel/vector/actions/workflows/build.yml\n[documentation-img]: https://docs.rs/vector/badge.svg\n[documentation-url]: https://docs.rs/vector\n[package-img]: https://img.shields.io/crates/v/vector.svg\n[package-url]: https://crates.io/crates/vector\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstainless-steel%2Fvector","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstainless-steel%2Fvector","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstainless-steel%2Fvector/lists"}