forked from HerodotusDev/integrity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScarb.toml
42 lines (32 loc) · 790 Bytes
/
Scarb.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
[package]
name = "integrity"
version = "2.0.0"
authors = ["HerodotusDev"]
description = "STARK proof verifier for Starknet"
readme = "README.md"
repository = "https://github.com/HerodotusDev/integrity"
license = "Apache-2.0"
keywords = ["STARK proof", "verifier", "cairo_verifier"]
[dependencies]
starknet = "2.8.4"
[dev-dependencies]
cairo_test = "2.8.4"
[[target.starknet-contract]]
casm = true
# sierra = true
[lib]
sierra = true
casm = false
[features]
_verifier_logic = []
recursive = ["_verifier_logic"]
recursive_with_poseidon = ["_verifier_logic"]
dex = ["_verifier_logic"]
small = ["_verifier_logic"]
starknet = ["_verifier_logic"]
starknet_with_keccak = ["_verifier_logic"]
keccak = []
blake2s = []
monolith = []
split = []
default = ["recursive", "keccak", "monolith"]