forked from arkworks-rs/snark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (44 loc) · 1.3 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
50
51
[package]
name = "algebra"
version = "0.1.0"
authors = [
"Sean Bowe",
"Alessandro Chiesa",
"Matthew Green",
"Ian Miers",
"Pratyush Mishra",
"Howard Wu"
]
description = "A library for finite fields and elliptic curves"
homepage = "https://libzexe.org"
repository = "https://github.com/scipr/zexe"
documentation = "https://docs.rs/algebra/"
keywords = ["cryptography", "finite fields", "elliptic curves", "pairing"]
categories = ["cryptography"]
include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"]
license = "MIT/Apache-2.0"
edition = "2018"
################################# Dependencies ################################
[dependencies]
algebra-core = { path = "../algebra-core", default-features = false }
[dev-dependencies]
rand = { version = "0.7", default-features = false }
rand_xorshift = "0.2"
[features]
default = [ "std" ]
full = [ "bls12_377", "bls12_381", "sw6", "bw6_761", "mnt4_298", "mnt4_753", "mnt6_298", "mnt6_753", "edwards_bls12", "edwards_sw6", "jubjub" ]
bls12_377 = []
bls12_381 = []
edwards_bls12 = []
edwards_sw6 = []
jubjub = []
sw6 = []
bw6_761 = []
mnt4_298 = []
mnt4_753 = []
mnt6_298 = []
mnt6_753 = []
std = [ "algebra-core/std" ]
parallel = [ "std", "algebra-core/parallel" ]
derive = [ "algebra-core/derive" ]
asm = [ "algebra-core/llvm_asm" ]