verdyce 0.1.1

A time-decay threshold consensus engine for decentralized voting and governance with configurable decay models and dynamic thresholds.
Documentation
[dependencies.chrono]
features = ["serde"]
version = "0.4"

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

[dependencies.serde_json]
version = "1.0"

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

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

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

[package]
authors = ["Yuvraj Biswal yuvrajbiswalofficial@gmail.com"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "data-structures", "cryptography"]
description = "A time-decay threshold consensus engine for decentralized voting and governance with configurable decay models and dynamic thresholds."
edition = "2024"
homepage = "https://github.com/Yuvraj-cyborg/verdyce"
keywords = ["consensus", "voting", "dao", "decentralized", "governance"]
license = "MIT"
name = "verdyce"
readme = "README.md"
repository = "https://github.com/Yuvraj-cyborg/verdyce"
version = "0.1.1"

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

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

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

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

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

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