You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: repair rotted grpc feature caught by the new CI lane (#354)
The grpc feature did not compile at all: prost 0.14 vs tonic 0.13 Message
mismatch, tokio-stream missing from the feature list, and src/grpc.rs
drifted behind the Database/models APIs (Entity/RecallParams fields,
state_set signature, Stats field names, health_check, private
get_entity_by_id, moved-value in recall, and remember inserting an
empty id).
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: Cargo.toml
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,14 @@ ort = { version = "2.0.0-rc.12", optional = true, features = ["download-binaries
45
45
# defaults) so tokenizer behavior is otherwise unchanged. (#222)
46
46
tokenizers = { version = "0.23", optional = true, default-features = false, features = ["onig", "progressbar"] }
47
47
ndarray = { version = "0.17", optional = true } # MUST match the ndarray version ort rc.12 depends on, else our arrays are a different crate-version type and TensorArrayData (from_array_view) won't accept them (#212)
48
+
# prost/prost-types MUST stay on the same minor as tonic's own prost dep
0 commit comments