-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
101 lines (82 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
101 lines (82 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
[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 SDK
chia = "0.26"
chia-wallet-sdk = { version = "0.30", features = ["action-layer"] }
chia-puzzles = "0.20"
chia-protocol = "0.26"
# CLVM
clvm-traits = "0.26"
clvm-utils = "0.26"
clvmr = "0.14"
# Encoding
hex = "0.4"
hex-literal = "0.4"
# Error handling
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]
# Re-export main crate for examples
action-layer-driver = { path = "." }
# Chia SDK
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"
# CLVM
clvmr = "0.14"
clvm-traits = "0.26"
clvm-utils = "0.26"
# Crypto and encoding
hex = "0.4"
hex-literal = "0.4"
sha2 = "0.10"
rand = "0.8"
bech32 = "0.11"
bip39 = "2.0"
# CLI framework
clap = { version = "4.4", features = ["derive", "env"] }
# Interactive prompts
dialoguer = "0.11"
console = "0.15"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Async runtime
tokio = { version = "1", features = ["full"] }
# Directories
dirs = "5.0"
# Error handling
thiserror = "2"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Peer connections
datalayer-driver = "3"