vanth/crates/vanth/tests/integration/main.rs
Markus Scully a1cc9b6e04
vanth/store, tests: Add persistent SQLite and in-memory store backends with CRUD operations
- Added `rusqlite` and `sqlx` dependencies to support SQLite backend functionality for the store.
- Implemented `Store` struct with backend switching between in-memory (`HashMap`) and SQLite-based storage.
- Added CRUD operations (`read`, `write`, `delete`) to the `Store` API with error handling.
- Created integration tests for SQLite store persistence and basic operations.
2025-08-05 18:26:08 +03:00

6 lines
110 B
Rust

use serde::{Deserialize, Serialize};
use vanth::{Component, Node, Reference};
mod derive;
mod fs;
mod store;