netabase_store 0.0.8

A type-safe, multi-backend key-value storage library for Rust with support for native (Sled, Redb) and WASM (IndexedDB) environments.
Documentation
1
2
3
4
5
6
7
8
9
//! Utility modules for netabase_store
//!
//! This module contains various utility functions and types that are used
//! throughout the netabase_store library.

pub mod datetime;

// Re-export commonly used items
pub use datetime::{NetabaseDateTime, chrono};