-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (61 loc) · 1.72 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (61 loc) · 1.72 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
[package]
name = "chia_gaming"
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
description = "A series of protocols that enable state-channels and gaming for the Chia blockchain."
authors = [
"Art Yerkes <art.yerkes@gmail.com>",
"Adam Kelly <adam@chia.net>",
"Matt Howard <matt@chia.net>",
]
homepage = "https://github.com/Chia-Network/chia-gaming/"
repository = "https://github.com/Chia-Network/chia-gaming/"
[features]
sim-tests = []
sim-server = [
"sim-tests",
"dep:axum",
"dep:futures-util",
"dep:tokio",
"dep:tokio-tungstenite",
]
used_linker = []
[dependencies]
bencodex = { path = "bencodex" }
chia-bls = "=0.38.2"
chia-consensus = "=0.38.2"
chia-protocol = "=0.38.2"
chia-puzzles = "=0.20.2"
clvm-traits = "=0.38.2"
clvm-utils = "=0.38.2"
clvmr = { version = "=0.17.7", features = ["pre-eval"] }
hex = "=0.4.3"
lazy_static = "=1.5.0"
num-bigint = "=0.4.6"
num-traits = "=0.2.19"
rand = "=0.9.3"
rand_chacha = "=0.9.0"
serde = { version = "=1.0.228", features = ["rc"] }
serde_json = "=1.0.145"
sha2 = "=0.10.9"
typetag = "=0.2.21"
tokio = { version = "=1.52.3", features = ["rt-multi-thread", "macros", "net", "sync", "time", "signal", "io-util"], optional = true }
tokio-tungstenite = { version = "=0.30.0", optional = true }
futures-util = { version = "=0.3.32", features = ["sink"], optional = true }
axum = { version = "=0.8.9", features = ["ws"], optional = true }
[build-dependencies]
chialisp = "0.5.0"
clvmr = { version = "=0.17.7" }
serde_json = "=1.0.145"
toml = "=0.8.23"
[[bin]]
name = "chia-gaming-sim"
path = "src/bin/simulator.rs"
required-features = ["sim-server"]
[[bin]]
name = "gen-krunk-dict"
path = "games/krunk/rust/bin_gen_krunk_dict.rs"
[lib]
name = "chia_gaming"
crate-type = ["rlib"]