4aee356486
- Proto definitions for SearchRequest/SearchResponse/SearchResult - SearchService implementing MusicFs trait - Query validation (empty check, 256 char max, limit cap at 10k) - Streaming support via tokio mpsc channel Ultraworked with [Sisyphus](https://github.com/code-yeongyu/claude-agent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
20 lines
411 B
TOML
20 lines
411 B
TOML
[package]
|
|
name = "musicfs-grpc"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
musicfs-search = { path = "../musicfs-search" }
|
|
musicfs-core = { path = "../musicfs-core" }
|
|
tonic.workspace = true
|
|
prost.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
tracing.workspace = true
|
|
|
|
[build-dependencies]
|
|
tonic-build.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|