- 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
19 lines
513 B
TOML
19 lines
513 B
TOML
[package]
|
|
name = "blockchain-core"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "Core blockchain library: blocks, chain, wallets, transactions, mining"
|
|
|
|
[dependencies]
|
|
sha2 = "0.10"
|
|
ed25519-dalek = { version = "2", features = ["rand_core"] }
|
|
rand = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
hex = "0.4"
|
|
thiserror = "2"
|
|
uuid = { version = "1", features = ["v4"] }
|