forked from arkworks-rs/snark
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
34 lines (32 loc) · 1.02 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
[package]
name = "r1cs-core"
version = "0.6.1"
authors = [
"Sean Bowe",
"Alessandro Chiesa",
"Matthew Green",
"Ian Miers",
"Pratyush Mishra",
"Howard Wu",
"Daniele Di Benedetto <[email protected]>",
"Marcelo Kaihara",
"Ulrich Haboeck <[email protected]>",
"Maksym Vereshchak <[email protected]>",
"Luigi Varriale <[email protected]>",
"cronicc <[email protected]>",
"Luca Giussani <[email protected]>",
"Daniele Di Tullio <[email protected]>",
"Nicholas Mainardi <[email protected]>",
"Michele d'Amico <[email protected]>",
]
description = "A library for rank-one constraint systems"
edition = "2018"
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
[dependencies]
algebra = { path = "../../algebra" }
smallvec = { version = "1.7.0" }
radix_trie = { version = "0.2.1" }
rand = { version = "0.8.4" }
[dev-dependencies]
algebra = { path = "../../algebra", features = ["tweedle"] }