9b1771d584
- Remove serde_json from [dev-dependencies] (already in [dependencies]) - Add debug_assert! in search_objects visibility filter as defense-in-depth - Extend search_objects doc-comment with visibility precondition - Clarify estimated_total_hits.unwrap_or(0) is safe under offset/limit pagination - Add brief comment on with_crop_length(20) explaining ~20-word context window Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
429 B
TOML
21 lines
429 B
TOML
[package]
|
|
name = "search"
|
|
version = "0.0.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[dependencies]
|
|
meilisearch-sdk.workspace = true
|
|
serde = { workspace = true }
|
|
thiserror.workspace = true
|
|
domain = { path = "../domain" }
|
|
db = { path = "../db" }
|
|
sqlx.workspace = true
|
|
serde_json.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tokio.workspace = true
|
|
uuid.workspace = true
|
|
sqlx.workspace = true
|
|
domain = { path = "../domain" }
|