-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
34 lines (29 loc) · 893 Bytes
/
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
[package]
name = "r1cs"
description = "A library for building R1CS gadgets"
version = "0.4.7"
authors = ["Daniel Lubarov <[email protected]>", "Brendan Farmer <[email protected]>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/mir-protocol/r1cs"
documentation = "https://docs.rs/r1cs"
keywords = ["R1CS", "cryptography", "SNARK"]
categories = ["cryptography", "no-std"]
maintenance = { status = "actively-developed" }
edition = "2018"
[features]
default = ["std"]
std = ["num/std", "num-traits/std", "itertools/use_std", "bimap/std"]
[dev-dependencies]
criterion = "0.3.5"
[dependencies]
bimap = { version = "0.4.0" }
itertools = { version = "0.8.0" }
num = { version = "0.4.0", features = ["rand"] }
num-traits = { version = "0.2.14" }
[[bench]]
name = "nth_root"
harness = false
[[bench]]
name = "multiplicative_inverse"
harness = false