BREAKING CHANGE(core): replace the TypeScript database engine with a Rust-backed embedded server and bridge

This commit is contained in:
2026-03-26 19:48:27 +00:00
parent 8ec2046908
commit e23a951dbe
106 changed files with 11567 additions and 10678 deletions
+16
View File
@@ -0,0 +1,16 @@
mod matcher;
mod update;
mod sort;
mod projection;
mod distinct;
pub mod aggregation;
mod field_path;
pub mod error;
pub use matcher::QueryMatcher;
pub use update::UpdateEngine;
pub use sort::sort_documents;
pub use projection::apply_projection;
pub use distinct::distinct_values;
pub use aggregation::AggregationEngine;
pub use field_path::{get_nested_value, set_nested_value};