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
35 lines
696 B
TOML
35 lines
696 B
TOML
[package]
|
|
name = "synor-vm"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "WASM virtual machine for Synor smart contracts"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
# Internal crates
|
|
synor-types = { path = "../synor-types" }
|
|
synor-crypto = { path = "../synor-crypto" }
|
|
|
|
# WASM runtime
|
|
wasmtime.workspace = true
|
|
|
|
# Serialization
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
borsh.workspace = true
|
|
|
|
# Utilities
|
|
thiserror.workspace = true
|
|
parking_lot.workspace = true
|
|
tracing.workspace = true
|
|
hex.workspace = true
|
|
|
|
# Hashing
|
|
blake3.workspace = true
|
|
sha3.workspace = true
|
|
|
|
# Async
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile.workspace = true
|