meilisearch-rust icon indicating copy to clipboard operation
meilisearch-rust copied to clipboard

Rust wrapper for the Meilisearch API.

Results 122 meilisearch-rust issues
Sort by recently updated
recently updated
newest added

**Description** The following is a flacky test: https://github.com/meilisearch/meilisearch-rust/blob/09f9eb5baac017b1b0a820c4646dd671ac883de3/src/client.rs#L936-L941 See the following github-action: https://github.com/meilisearch/meilisearch-rust/runs/6304373859?check_suite_focus=true Not sure when it was introduced **Expected behavior** Always succeed **Current behavior** Regularely fail. Any idea @irevoire...

bug

Currently, we can’t create a `Client` without any API `Key`. But when you’re using meilisearch in development you can totally launch your instance without any API `Key`. There is no...

good first issue

[`attributes_to_crop`](https://docs.meilisearch.com/reference/api/search.html#attributes-to-crop) and [`attributes_to_highlight`](https://docs.meilisearch.com/reference/api/search.html#attributes-to-highlight) have the same type as per the documentation https://github.com/meilisearch/meilisearch-rust/blob/0d1a82e55a84dd65a417b5a8414bc3839f7b5245/src/search.rs#L175 and here https://github.com/meilisearch/meilisearch-rust/blob/0d1a82e55a84dd65a417b5a8414bc3839f7b5245/src/search.rs#L187 I was wondering if there was another reason why these two attributes have different types?

help wanted

**Description** It would be great to add more well-commented examples to show how to use this crate. **Basic example** See #245 **Other** A new release of rust-doc should come out...

enhancement
good first issue
hacktoberfest

Currently, our [test macro](https://github.com/meilisearch/meilisearch-rust/tree/main/meilisearch-test-macro) is missing two big features: - [x] It should catch all panic and delete the created `Index` if there was one and then output the panic...

good first issue

**Description** It would be cool if we could somehow create a kind of builder macro but with the [settings of Meilisearch](https://docs.meilisearch.com/reference/api/settings.html#all-settings). Some settings do not apply here; you can't set...

enhancement
hacktoberfest

Just an idea I would like to explore to get a compile-time check on the filters with good error messages

enhancement

⚠️ This issue is generated, it means the examples and the namings do not necessarily correspond to the language of this repository. Also, if you are a maintainer, feel free...

good first issue
hacktoberfest

**Description** It's quite boring to start every file with `use meilisearch_sdk::{document::*, client::*};` It would be better if in the `lib.rs` we were re-exporting every structure like that: ```rust pub use...

enhancement
good first issue
hacktoberfest

**Changes:** - Added support for array filters. - Derive `Clone` for `Client` **Notes:** I changed the `with_filter` method to require an `impl Into