- Added basic project structure with workspace and crates: `kvstore`, `vault`, `evm_client`, `cli_app`, `web_app`. - Created initial `Cargo.toml` files for each crate. - Added placeholder implementations for key components. - Included initial documentation files (`README.md`, architecture docs, repo structure). - Included initial implementaion for kvstore crate(async API, backend abstraction, separation of concerns, WASM/native support, testability) - Included native and browser tests for the kvstore crate
8 lines
86 B
TOML
8 lines
86 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"kvstore",
|
|
"vault",
|
|
"evm_client"
|
|
]
|