herolib_rust/vault/src/kvs/mod.rs
Mahmoud-Emad 6dead402a2
Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
feat: Remove herodo from monorepo and update dependencies
- Removed the `herodo` binary from the monorepo. This was
  done as part of the monorepo conversion process.
- Updated the `Cargo.toml` file to reflect the removal of
  `herodo` and adjust dependencies accordingly.
- Updated `src/lib.rs` and `src/rhai/mod.rs` to use the new
  `sal-vault` crate for vault functionality.  This improves
  the modularity and maintainability of the project.
2025-06-23 14:56:03 +03:00

15 lines
362 B
Rust

//! Key-Value Store functionality
//!
//! This module provides a simple key-value store with encryption support.
pub mod error;
pub mod store;
// Re-export public types and functions
pub use error::KvsError;
pub use store::{
create_store, delete_store, get_store_path, list_stores, open_store, KvPair, KvStore,
};
// Tests are now in the tests/ directory