-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.yaml
99 lines (87 loc) · 2.25 KB
/
package.yaml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
name : arithmetic-circuits
version : 0.2.0
synopsis : Arithmetic circuits for zkSNARKs
description : Arithmetic circuits for zkSNARKs
maintainer : Adjoint Inc ([email protected])
license : MIT
github : adjoint-io/arithmetic-circuits
category : Cryptography
default-extensions:
- LambdaCase
- OverloadedStrings
- NoImplicitPrelude
- GADTs
dependencies:
# Base
- base >= 4.10 && < 5
- protolude >= 0.2 && < 0.4
- containers >= 0.6.0 && < 0.7
- text >= 1.2.3 && < 1.3
- vector >= 0.12 && < 0.13
# Algebra
- poly >= 0.3.2 && < 0.5
- semirings >= 0.5.2 && < 0.6
# Cryptography
- bulletproofs >= 1.1.0 && < 1.2
- elliptic-curve >= 0.3 && < 0.4
- galois-fft >= 0.1.0 && < 0.2
- galois-field >= 1.0.2 && < 2.0.0
# Misc
- filepath >= 1.4.2 && < 1.5
- process-extras >= 0.7.4 && < 0.8
- wl-pprint-text >= 1.2.0 && < 1.3
- MonadRandom >= 0.5.1 && < 0.6
# Serialization
- aeson >= 1.4 && < 1.5
extra-source-files:
- README.md
- ChangeLog.md
ghc-options:
- -freverse-errors
- -O2
- -Wall
library:
exposed-modules:
- Circuit
- Circuit.Affine
- Circuit.Arithmetic
- Circuit.Bulletproofs
- Circuit.Dot
- Circuit.Expr
- Circuit.Lang
- Fresh
- QAP
source-dirs:
- src
tests:
circuit-tests:
main: Main
dependencies:
- arithmetic-circuits
- pairing >= 1.0 && < 1.1
- QuickCheck >= 2.12 && < 2.14
- quickcheck-instances >= 0.3 && < 0.4
- tasty >= 1.2 && < 1.3
- tasty-discover >= 4.2 && < 4.3
- tasty-hunit >= 0.10 && < 0.11
- tasty-quickcheck >= 0.10 && < 0.11
source-dirs:
- test
readme-test:
dependencies:
- arithmetic-circuits
- base >= 4.10 && < 5
- pairing >= 1.0 && < 1.1
- protolude >= 0.2 && < 0.4
- markdown-unlit >= 0.5 && < 0.6
main: README.lhs
ghc-options: -pgmL markdown-unlit
benchmarks:
circuit-benchmarks:
main: Main
dependencies:
- criterion >= 1.5 && < 1.6
- pairing >= 1.0 && < 1.1
- arithmetic-circuits
source-dirs:
- bench