-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 1.15 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
[package]
authors = ["Colin Roberts"]
description = "A Rust implementation of Customizable Constraint Systems (CCS)."
edition = "2021"
keywords = ["cryptography", "zk"]
license = "MIT"
name = "custom-constraints"
readme = "README.md"
repository = "https://github.com/autoparallel/custom-constraints"
version = "0.2.0"
# Needed to deal with ark-ff's BS
[features]
asm = []
default = []
[dependencies]
[target.'cfg(target_arch = "x86_64")'.dependencies]
ark-ff = { version = "0.5", features = ["parallel", "asm"] }
[target.'cfg(not(target_arch = "x86_64"))'.dependencies]
ark-ff = { version = "0.5", default-features = false, features = ["parallel"] }
[dev-dependencies]
ark-std = { version = "0.5", default-features = false, features = ["std"] }
rand = "0.9"
rstest = { version = "0.24", default-features = false }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
getrandom = { version = "0.3", features = ["wasm_js"] }
wasm-bindgen = { version = "0.2" }
wasm-bindgen-test = { version = "0.3" }
[profile.release]
codegen-units = 1
lto = "fat"
opt-level = 3
panic = "abort"
strip = true