A complete blockchain implementation featuring: - synord: Full node with GHOSTDAG consensus - explorer-web: Modern React blockchain explorer with 3D DAG visualization - CLI wallet and tools - Smart contract SDK and example contracts (DEX, NFT, token) - WASM crypto library for browser/mobile
38 lines
729 B
TOML
38 lines
729 B
TOML
[package]
|
|
name = "synor-dag"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = "GHOSTDAG consensus implementation for Synor blockchain"
|
|
|
|
[dependencies]
|
|
synor-types = { path = "../synor-types" }
|
|
|
|
# Data structures
|
|
smallvec = { workspace = true }
|
|
hashbrown = "0.14"
|
|
parking_lot = "0.12"
|
|
indexmap = "2.0"
|
|
|
|
# Algorithms
|
|
petgraph = "0.6"
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
borsh = { workspace = true }
|
|
|
|
# Error handling
|
|
thiserror = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
criterion = { workspace = true }
|
|
proptest = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
[[bench]]
|
|
name = "ghostdag_bench"
|
|
harness = false
|