https://github.com/yah01/knowhere-rs
Rust port of Knowhere
https://github.com/yah01/knowhere-rs
Last synced: 2 months ago
JSON representation
Rust port of Knowhere
- Host: GitHub
- URL: https://github.com/yah01/knowhere-rs
- Owner: yah01
- License: apache-2.0
- Created: 2023-05-15T07:00:26.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-24T09:47:29.000Z (about 3 years ago)
- Last Synced: 2025-08-02T15:49:27.932Z (12 months ago)
- Language: Rust
- Size: 9.77 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# knowhere-rs
Rust port of Knowhere
## Generate
Compile Knowhere with Release mode first:
```shell
mkdir build && cd build
conan install .. --build=missing -o with_ut=True -s compiler.libcxx=libstdc++11 -s build_type=Release
conan build ..
```
This generates the Knowhere shared library to `knowhere/build/Release`, so the bindgen could find it.
Then run `cargo build` to generate the bindings at `src/knowhere.rs`