Some checks are pending
Rhai Tests / Run Rhai Tests (push) Waiting to run
- 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.
15 lines
362 B
Rust
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
|