forked from snarkify/arkmsm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 968 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
35
36
37
38
39
40
41
42
43
44
[package]
name = "ark-msm"
version = "0.3.0-alpha.2"
authors = [
"Jiannan Ouyang <ouyang@snarkify.io>",
"Boyu Sun <boyu@snarkify.io>",
"Chao Ma <chao@snarkify.io>",
"cyphersnake <mikhail@snarkify.io>",
]
description = "An optimized multi-scalar muliplication (MSM) library based on arkworks"
homepage = "https://github.com/snarkify/arkmsm"
repository = "https://github.com/snarkify/arkmsm"
documentation = "https://hackmd.io/@drouyang/msm"
readme = "README.md"
keywords = ["cryptography", "msm", "zkp"]
categories = ["cryptography"]
license = "MIT/Apache-2.0"
edition = "2021"
rust-version = "1.63"
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
ark-bls12-381 = "0.3.0"
ark-ec = "0.3.0"
ark-ff = "0.3.0"
ark-std = "0.3.0"
num-bigint = "0.4.0"
all_asserts = "2.3.1"
[dev-dependencies]
criterion = "0.5.1"
[profile.test]
opt-level = 3
[[bench]]
harness = false
name = "bench_window_size"
[[bench]]
harness = false
name = "bench_with_baseline"