- 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.
23 lines
575 B
TOML
23 lines
575 B
TOML
[workspace]
|
|
members = ["crates/*"]
|
|
resolver = "3"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
clap = { version = "4.5.42", features = ["derive"] }
|
|
bevy_app = "0.16.1"
|
|
bevy_ecs = "0.16.1"
|
|
bitcode = "0.6.6"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
digest = "0.10.7"
|
|
blake3 = { version = "1.8.2", features = ["traits-preview"] }
|
|
quote = "1.0"
|
|
syn = { version = "2.0", features = ["full"] }
|
|
proc-macro2 = "1.0"
|
|
sqlx = "0.8.6"
|
|
rusqlite = { version = "0.32.1", features = ["bundled"] }
|
|
tempfile = "3.12.0"
|