-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
104 lines (86 loc) · 2.37 KB
/
Cargo.toml
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
102
103
104
[package]
name = "clvm_tools_rs"
version = "0.1.45"
edition = "2018"
authors = ["Art Yerkes <[email protected]>"]
description = "tools for working with chialisp language; compiler, repl, python and wasm bindings"
readme = "README.md"
repository = "https://github.com/Chia-Network/clvm_tools_rs"
license = "Apache-2.0"
keywords = ["chia", "chialisp", "clvm"]
categories = ["command-line-utilities"]
[package.metadata.maturin]
python-source = "python"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = "0.4.3"
num-bigint = { version = "0.4.0", features = ["serde"] }
bls12_381 = { version = "=0.8.0", features = ["experimental"] }
bytestream = "0.4.1"
num-traits = "0.2.14"
lazy_static = "1.4.0"
unicode-segmentation = "1.12.0"
encoding8 = "0.3.2"
num = "0.4.3"
indoc = "2.0"
do-notation = "0.1.3"
serde_json = "1.0"
sha2 = "0.9.5"
tempfile = "3.14.0"
clvmr = { version = "0.8.0", features = ["pre-eval"] }
binascii = "0.1.4"
yaml-rust2 = "0.9"
hashlink = "0.9.1"
serde = { version = "1.0", features = ["derive", "rc"] }
regex = "1.11.1"
rand = { version = "0.8.5", optional = true }
rand_chacha = { version = "0.3.1", optional = true }
lfsr = { version = "0.3.0", optional = true }
[dependencies.pyo3]
version = "0.21.2"
features = ["abi3-py38", "extension-module"]
optional = true
[dev-dependencies]
rand = "0.8.5"
rand_chacha = "0.3.1"
lfsr = "0.3.0"
[lib]
name = "clvm_tools_rs"
crate-type = ["cdylib", "rlib"]
[features]
extension-module = ["dep:pyo3"]
fuzz = ["dep:rand", "dep:rand_chacha", "dep:lfsr"]
default = []
[target.'cfg(target_family="wasm")'.dependencies]
wasm-bindgen = { version = "0.2.80", features = ["serde-serialize"] }
wasm-bindgen-test = "0.3.25"
js-sys = "0.3.58"
getrandom = { version = "0.2", features = ["js"] }
[target.'cfg(not(target_family="wasm"))'.dependencies]
getrandom = { version = "0.2" }
[build-dependencies]
pyo3-build-config = "0.21.2"
[[bin]]
name = "opd"
path = "src/classic/bins/opd.rs"
[[bin]]
name = "opc"
path = "src/classic/bins/opc.rs"
[[bin]]
name = "run"
path = "src/classic/bins/run.rs"
[[bin]]
name = "brun"
path = "src/classic/bins/brun.rs"
[[bin]]
name = "cldb"
path = "src/classic/bins/cldb.rs"
[[bin]]
name = "shrink"
path = "src/classic/bins/shrink.rs"
[[bin]]
name = "clisp_to_json"
path = "src/classic/bins/clisp_to_json.rs"
[[bin]]
name = "repl"
path = "src/classic/bins/repl.rs"