[package]
name = "action-layer-driver"
version = "0.1.2"
edition = "2021"
rust-version = "1.90.0"
description = "Generic driver for Action Layer (CHIP-0050) singleton spend construction on Chia"
license = "MIT"
authors = ["DIG Network"]
repository = "https://github.com/dig-network/action-layer-driver"
keywords = ["chia", "blockchain", "singleton", "action-layer", "CHIP-0050"]
categories = ["cryptography::cryptocurrencies"]
[lib]
path = "src/lib.rs"
[dependencies]
chia = "0.26"
chia-wallet-sdk = { version = "0.30", features = ["action-layer"] }
chia-puzzles = "0.20"
chia-protocol = "0.26"
clvm-traits = "0.26"
clvm-utils = "0.26"
clvmr = "0.14"
hex = "0.4"
hex-literal = "0.4"
thiserror = "2"
[workspace]
members = [
"examples/singlelaunch",
"examples/wallet",
]
[workspace.package]
version = "0.1.2"
edition = "2021"
rust-version = "1.90.0"
license = "MIT"
authors = ["DIG Network"]
[workspace.dependencies]
action-layer-driver = { path = "." }
chia = "0.26"
chia-wallet-sdk = { version = "0.30", features = ["action-layer"] }
chia-sdk-test = "0.30"
chia-puzzles = "0.20"
chia-bls = "0.26"
chia-protocol = "0.26"
chia-puzzle-types = "0.26"
clvmr = "0.14"
clvm-traits = "0.26"
clvm-utils = "0.26"
hex = "0.4"
hex-literal = "0.4"
sha2 = "0.10"
rand = "0.8"
bech32 = "0.11"
bip39 = "2.0"
clap = { version = "4.4", features = ["derive", "env"] }
dialoguer = "0.11"
console = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
tokio = { version = "1", features = ["full"] }
dirs = "5.0"
thiserror = "2"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
datalayer-driver = "3"