blockchain-core/Cargo.toml
StillHammer 64ea897cdc Initial setup: Rust workspace with core lib + axum node
- Workspace: core/ (blockchain library) + node/ (REST API)
- Core: block, chain, wallet, transaction, mining, persistence, state
- Node: axum 0.8 REST API with full endpoint set
- SHA-256 hashing, Ed25519 signatures, account-based model
- Unit tests for all core modules
2026-02-01 10:12:27 +08:00

10 lines
145 B
TOML

[workspace]
members = ["core", "node"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Alex"]
license = "MIT"