pjson-rs 0.6.0

Priority JSON Streaming Protocol - high-performance priority-based JSON streaming (requires nightly Rust)
Documentation
1
2
3
4
5
6
7
8
9
//! Repository implementations for data persistence
//!
//! Contains implementations for storing and retrieving PJS data.

#[cfg(all(feature = "compression", not(target_arch = "wasm32")))]
pub mod dictionary_store;

#[cfg(all(feature = "compression", not(target_arch = "wasm32")))]
pub use dictionary_store::InMemoryDictionaryStore;