-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
98 lines (81 loc) · 2.14 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
[package]
name = "clvm_tools_rs"
version = "0.1.21"
edition = "2018"
authors = ["Art Yerkes <[email protected]>"]
description = "tools for working with chialisp language; compiler, repl, python and wasm bindings"
homepage = "https://prozacchiwawa.github.io/clvm_tools_rs/"
readme = "README.md"
repository = "https://github.com/Chia-Network/clvm_tools_rs"
license = "MIT"
keywords = ["chia", "chialisp", "clvm"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hex = "0.4.3"
num-bigint = "0.4.0"
bls12_381 = "0.5.0"
bytestream = "0.4.1"
num-traits = "0.2.14"
lazy_static = "1.4.0"
unicode-segmentation = "1.8.0"
derivative = "2.2.0"
encoding8 = "0.3.2"
num = "0.4.0"
indoc = "1.0"
do-notation = "0.1.3"
serde_json = "1.0"
sha2 = "0.9.5"
yamlette = "0.0.8"
tempfile = "3.3.0"
clvmr = "0.1.21"
env_logger = "0.9.0"
log = "0.4.17"
binascii = "0.1.4"
[patch.crates-io]
skimmer = { git = "https://github.com/dnsl48/skimmer", rev = "ca914ef624ecf39a75ed7afef10e7838fffe9127" }
[target.x86_64-apple-darwin]
rustflags = [
"-C", "link-arg=-undefined",
"-C", "link-arg=dynamic_lookup",
]
[lib]
name = "clvm_tools_rs"
crate-type = ["cdylib", "rlib"]
[features]
extension-module = ["pyo3"]
default = ["extension-module"]
[target.'cfg(target_family="wasm")'.dependencies]
wasm-bindgen = "0.2.80"
wasm-bindgen-test = "0.3.25"
js-sys = "0.3.58"
getrandom = { version = "0.2", features = ["js"] }
[target.'cfg(not(target_family="wasm"))'.dependencies]
pyo3 = { version = "0.14.2", features = ["abi3-py37", "extension-module"], optional = true }
getrandom = { version = "0.2" }
[build-dependencies]
pyo3-build-config = "0.15.1"
[[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 = "repl"
path = "src/classic/bins/repl.rs"
[[bin]]
name = "typetest"
path = "src/classic/bins/typetest.rs"