- 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
16 lines
231 B
TOML
16 lines
231 B
TOML
[package]
|
|
name = "vault"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
kvstore = { path = "../kvstore" }
|
|
async-trait = "0.1"
|
|
chacha20poly1305 = "0.10"
|
|
k256 = "0.13"
|
|
rand_core = "0.6"
|
|
thiserror = "1"
|