forked from arkworks-rs/algebra
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
31 lines (27 loc) · 962 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
[package]
name = "ark-algebra-bench-templates"
description = "A benchmark library for finite fields and elliptic curves"
keywords = ["cryptography", "finite-fields", "elliptic-curves", "pairing"]
documentation = "https://docs.rs/ark-algebra-bench-templates/"
version.workspace = true
authors.workspace = true
homepage.workspace = true
repository.workspace = true
categories.workspace = true
include.workspace = true
license.workspace = true
edition.workspace = true
rust-version.workspace = true
metadata.docs.rs.workspace = true
metadata.release.workspace = true
################################# Dependencies ################################
[dependencies]
criterion = { workspace = true, features = [ "html_reports" ] }
ark-std.workspace = true
ark-ec.workspace = true
ark-ff.workspace = true
ark-serialize.workspace = true
paste.workspace = true
[features]
asm = [ "ark-ff/asm" ]
parallel = [ "ark-std/parallel", "ark-ff/parallel", "ark-ec/parallel", ]