[package]
edition = "2021"
rust-version = "1.75.0"
name = "dig-events-protocol"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Canonical DIG Network blockchain→app event contract: the wallet/chain event taxonomy (WalletEvent, EventKind, Cursor, EmittedEvent, SyncStatus) plus the EventEmitter/CatchUp shape traits that the node engine emits and apps subscribe to — a pure leaf crate (serde + enumset + async-trait, no dig-* deps) that freezes the event wire format against drift."
readme = "README.md"
keywords = [
"events",
"wallet",
"chia",
"dig",
"protocol",
]
categories = [
"data-structures",
"encoding",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/DIG-Network/dig-events-protocol"
[lib]
name = "dig_events_protocol"
path = "src/lib.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.enumset]
version = "1"
features = ["serde"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"