governance 0.1.0

Governance and voting system for Neural Trader - proposal management, voting mechanisms, and consensus protocols
Documentation
[dependencies.chrono]
features = ["serde"]
version = "0.4"

[dependencies.dashmap]
version = "5.5"

[dependencies.rust_decimal]
version = "1.33"

[dependencies.rust_decimal_macros]
version = "1.33"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
features = ["full"]
version = "1.35"

[dependencies.uuid]
features = ["v4", "serde"]
version = "1.6"

[dev-dependencies.tokio-test]
version = "0.4"

[[example]]
name = "governance_demo"
path = "examples/governance_demo.rs"

[lib]
name = "governance"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "Governance and voting system for Neural Trader - proposal management, voting mechanisms, and consensus protocols"
documentation = "https://docs.rs/governance"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "governance"
readme = "README.md"
repository = "https://github.com/ruvnet/neural-trader"
version = "0.1.0"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "proposal_tests"
path = "tests/proposal_tests.rs"

[[test]]
name = "voting_tests"
path = "tests/voting_tests.rs"