mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-07-09 17:28:42 +00:00
fix(filter): bump recursion_limit to 4096 to fix lib test E0275
ruvector-filter lib test build hits a recursion overflow evaluating `&mut Vec<u8>: std::io::Write` (required for serde_json's Serializer impl). The previous limit of 2048 was insufficient on stable rustc as of 2026-04; the compiler explicitly suggests 4096. Bumping resolves the core-and-rest test shard failure. Co-Authored-By: claude-flow <ruv@ruv.net>
This commit is contained in:
parent
1b7b6db097
commit
75f538c1bf
1 changed files with 1 additions and 1 deletions
|
|
@ -1,4 +1,4 @@
|
|||
#![recursion_limit = "2048"]
|
||||
#![recursion_limit = "4096"]
|
||||
|
||||
//! # rUvector Filter
|
||||
//!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue