velesdb-core 5.0.0

High-performance vector database engine written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Binary wire formats shared across the server, CLI, and SDKs.
//!
//! These are pure byte (de)serialisers with no storage or persistence
//! dependency, so they compile on every target (including `wasm32`).

pub mod stable_hash;
pub mod vrb1;

#[cfg(test)]
mod stable_hash_property_tests;

#[cfg(test)]
mod stable_hash_tests;

// Canonical cross-engine ID hashing now lives in `wire::stable_hash`. Re-exported
// here so the historical `wire::hash_edge_id` path keeps working unchanged.
pub use stable_hash::{hash_edge_id, hash_id, hash_id_bytes};