chia-generator-parser 0.4.2

Chia blockchain generator bytecode parser
Documentation
[package]
name = "chia-generator-parser"
version = "0.4.2"
edition = "2021"
description = "Chia blockchain generator bytecode parser"
license = "MIT"

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

[dependencies]
# Core dependencies
chia-protocol = "0.36.1"
chia-traits = "0.36.1"
chia-consensus = "0.36.1"  # For run_block_generator2
chia-bls = "0.36.1"  # For BLS signatures

# Utilities
clvmr = "0.16.2"
clvm-utils = "0.36.1"
hex = "0.4"
sha2 = "0.10"
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
thiserror = "1.0"

[dev-dependencies]
# Test-only: an independent source of the Chia L1 mainnet genesis, used to pin
# upstream TEST_CONSTANTS (tests/mainnet_constants_pin.rs). Not a runtime dep.
dig-constants = "0.10"

[features]
default = []
python-compat = []