forked from radiusxyz/delay-encryption-in-halo2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (44 loc) · 1.64 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
52
[package]
name = "halo2_delay_enc"
version = "0.1.0"
edition = "2021"
description = "Delay Encryption circuit in halo2."
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Halo2
maingate = {git = "https://github.com/privacy-scaling-explorations/halo2wrong", tags = "v2023_04_20" , default-features = false }
halo2wrong = {git = "https://github.com/privacy-scaling-explorations/halo2wrong", tags = "v2023_04_20" , default-features = false }
halo2 = { package = "halo2_proofs", git = "https://github.com/privacy-scaling-explorations/halo2", tags ="v2023_04_20" }
# ecc = {git = "https://github.com/privacy-scaling-explorations/halo2wrong", tags = "v2023_04_20"}
# halo2_gadgets = { package = "halo2_gadgets", git = "https://github.com/privacy-scaling-explorations/halo2", tags ="v2023_04_20" }
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v2023_04_20" }
# Big-integer
num-bigint = { version = "0.4", features = ["rand"] }
ff = "0.13"
group = "0.13"
subtle = { version = "2.3", default-features = false }
# Feature
bitvec = "1"
rand_core = { version = "0.6", default-features = false }
[dev-dependencies]
rand = "0.8.5"
rand_core = { version = "0.6", default-features = false }
rsa = "0.6.1"
sha2 = "0.10.6"
paste = "1.0.7"
proptest = "1.0.0" #proptest = {version = "1.0.0", optional = true}
uint = "0.9.2" # MSRV 1.56.2 ??
criterion = { version = "0.3", features = ["html_reports"] }
[lib]
doctest = false
bench = false
[[bench]]
name = "pose_enc"
harness = false
[[bench]]
name = "mod_pow"
harness = false
[[bench]]
name = "delay_enc"
harness = false