-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
28 lines (24 loc) · 856 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
[package]
name = "grumpkin"
version = "0.1.0"
authors = [ "Jules de Smit <[email protected]>" ]
license = "MIT/Apache-2.0"
edition = "2021"
repository = "https://github.com/julesdesmit/grumpkin"
readme = "README.md"
description = "Implementation of the Grumpkin curve in Rust, building off of the `halo2curves` library created by https://github.com/privacy-scaling-explorations"
[dependencies]
subtle = "2.4"
ff = "0.13.0"
group = "0.13.0"
pasta_curves = "0.5.0"
rand = "0.8"
rand_core = { version = "0.6", default-features = false }
halo2curves = { git = "https://github.com/privacy-scaling-explorations/halo2curves", rev = "403e8469" }
[dev-dependencies]
criterion = { version = "0.3", features = ["html_reports"] }
rand_xorshift = "0.3"
ark-std = { version = "0.3", features = ["print-trace"] }
[features]
default = []
asm = ["halo2curves/asm"]