Adding bm25_vectorizer library as a dependency
Run this command in a terminal, in your project's directory:
cargo add bm25-vectorizer
To add it manually, edit your project's Cargo.toml file and add to the [dependencies] section:
bm25-vectorizer = "1.0.0"
The bm25_vectorizer library will be automatically available globally.
Read the bm25_vectorizer library documentation.
Back to the crate overview.