synor/crates/synor-governance/Cargo.toml
Gulshan Yadav 48949ebb3f Initial commit: Synor blockchain monorepo
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
2026-01-08 05:22:17 +05:30

30 lines
650 B
TOML

[package]
name = "synor-governance"
version.workspace = true
edition.workspace = true
description = "Governance, vesting, and multisig support for Synor blockchain"
license.workspace = true
[dependencies]
# Internal crates
synor-types = { path = "../synor-types" }
synor-crypto = { path = "../synor-crypto" }
# Serialization
borsh.workspace = true
serde.workspace = true
serde_json.workspace = true
# Utilities
thiserror.workspace = true
parking_lot.workspace = true
hashbrown.workspace = true
chrono.workspace = true
hex.workspace = true
# Cryptography
sha3.workspace = true
blake3.workspace = true
[dev-dependencies]
tempfile.workspace = true