forked from Chia-Network/clvm_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (42 loc) · 1.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
[workspace]
members = ["fuzz", "tools", "wasm", "wheel"]
[package]
name = "clvmr"
version = "0.3.0"
authors = ["Richard Kiss <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "Implementation of `clvm` for Chia Network's cryptocurrency"
homepage = "https://github.com/Chia-Network/clvm_rs/"
repository = "https://github.com/Chia-Network/clvm_rs/"
readme = "README.md"
[lib]
name = "clvmr"
crate-type = ["rlib"]
[features]
# when enabling the "counters" features, the CLVM interpreter is instrumented to
# collect counters about the programs it executes
counters = []
# when enabled, pre-eval and post-eval callbacks are enabled. This is useful for
# debugging and tracing of programs.
pre-eval = []
[profile.release]
lto = true
[dependencies]
hex = "=0.4.3"
lazy_static = "=1.4.0"
num-bigint = "=0.4.3"
num-traits = "=0.2.15"
num-integer = "=0.1.45"
# the experimental feature enables hashing to curves
bls12_381 = { version = "=0.8.0", features = ["experimental"] }
# the newer sha2 crate doesn't implement the digest traits required by HKDF
group = "=0.13.0"
sha2 = "=0.9.9"
openssl = { version = ">=0.10.55", features = ["vendored"], optional = true }
getrandom = { version = "=0.2.9", features = ["js" ]}
# for secp sigs
k256 = { version = "0.13.1", features = ["ecdsa"] }
p256 = { version = "0.13.2", features = ["ecdsa"] }
[dev-dependencies]
rstest = "=0.17.0"