-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsonic.cabal
195 lines (177 loc) · 5.75 KB
/
sonic.cabal
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 6b3f46739aa64619e448fa0f1c0618b009f678dc2a04077f60d9e67e8cd40741
name: sonic
version: 0.3.0
license: MIT
license-file: LICENSE
maintainer: Adjoint Inc ([email protected])
homepage: https://github.com/adjoint-io/sonic#readme
bug-reports: https://github.com/adjoint-io/sonic/issues
synopsis: Sonic
description:
Please see the README on GitHub at <https://github.com/adjoint-io/sonic#readme>
category: Cryptography
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/adjoint-io/sonic
library
exposed-modules:
Sonic.CommitmentScheme
Sonic.Constraints
Sonic.Protocol
Sonic.Signature
Sonic.SRS
Sonic.Utils
hs-source-dirs: src
other-modules: Paths_sonic
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
FlexibleContexts
FlexibleInstances
LambdaCase
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
ghc-options:
-Wall -Werror -Wcompat -Wincomplete-record-updates
-Wredundant-constraints -Wno-unused-matches -Wno-name-shadowing
-Wno-type-defaults -Wno-orphans -Wno-incomplete-uni-patterns
-Wno-incomplete-patterns
build-depends:
base >=4.7 && <5
, bulletproofs >=1.1 && <2.0
, elliptic-curve >=0.3 && <0.4
, galois-field >=1.0 && <1.1
, MonadRandom >=0.5.1.1 && <0.6
, pairing >=1.0 && <1.1
, poly >=0.4 && <0.5
, protolude >=0.2.3 && <0.3
, semirings >=0.5.1 && <0.6
, vector >=0.12.0.0 && <0.13
executable sonic-example
main-is: Main.hs
hs-source-dirs: examples
other-modules: Paths_sonic
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
FlexibleContexts
FlexibleInstances
LambdaCase
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
ghc-options:
-Wall -Werror -Wcompat -Wincomplete-record-updates
-Wredundant-constraints -Wno-unused-matches -Wno-name-shadowing
-Wno-type-defaults -Wno-orphans -Wno-incomplete-uni-patterns
-Wno-incomplete-patterns -threaded -rtsopts -with-rtsopts=-N
-main-is Main
build-depends:
base >=4.7 && <5
, bulletproofs >=1.1 && <2.0
, elliptic-curve >=0.3 && <0.4
, galois-field >=1.0 && <1.1
, MonadRandom >=0.5.1.1 && <0.6
, pairing >=1.0 && <1.1
, poly >=0.4 && <0.5
, protolude >=0.2.3 && <0.3
, QuickCheck >=2.12.0 && <2.14
, semirings >=0.5.1 && <0.6
, sonic
, tasty >=1.2 && <1.3
, tasty-discover >=4.2.1 && <4.3
, tasty-hunit >=0.10.0.0 && <0.11
, tasty-quickcheck >=0.10.0.0 && <0.11
, vector >=0.12.0.0 && <0.13
test-suite sonic-test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
other-modules:
Paths_sonic
Test.CommitmentScheme
Test.Constraints
Test.Protocol
Test.Reference
Test.Signature
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
FlexibleContexts
FlexibleInstances
LambdaCase
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
ghc-options:
-Wall -Werror -Wcompat -Wincomplete-record-updates
-Wredundant-constraints -Wno-unused-matches -Wno-name-shadowing
-Wno-type-defaults -Wno-orphans -Wno-incomplete-uni-patterns
-Wno-incomplete-patterns
build-depends:
base >=4.7 && <5
, bulletproofs >=1.1 && <2.0
, elliptic-curve >=0.3 && <0.4
, galois-field >=1.0 && <1.1
, MonadRandom >=0.5.1.1 && <0.6
, pairing >=1.0 && <1.1
, poly >=0.4 && <0.5
, protolude >=0.2.3 && <0.3
, QuickCheck >=2.12.0 && <2.14
, semirings >=0.5.1 && <0.6
, sonic
, tasty >=1.2 && <1.3
, tasty-discover >=4.2.1 && <4.3
, tasty-hunit >=0.10.0.2 && <0.11
, tasty-quickcheck >=0.10.0.0 && <0.11
, vector >=0.12.0.0 && <0.13
benchmark sonic-benchmarks
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: bench test
other-modules: Test.Reference
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
FlexibleContexts
FlexibleInstances
LambdaCase
OverloadedStrings
RankNTypes
RecordWildCards
ScopedTypeVariables
ghc-options:
-Wall -Werror -Wcompat -Wincomplete-record-updates
-Wredundant-constraints -Wno-unused-matches -Wno-name-shadowing
-Wno-type-defaults -Wno-orphans -Wno-incomplete-uni-patterns
-Wno-incomplete-patterns
build-depends:
base >=4.7 && <5
, bulletproofs >=1.1 && <2.0
, criterion >=1.5.6.1 && <1.6
, elliptic-curve >=0.3 && <0.4
, galois-field >=1.0 && <1.1
, MonadRandom >=0.5.1.1 && <0.6
, pairing >=1.0 && <1.1
, poly >=0.4 && <0.5
, protolude >=0.2.3 && <0.3
, QuickCheck >=2.12.0 && <2.14
, semirings >=0.5.1 && <0.6
, sonic
, tasty >=1.2 && <1.3
, tasty-hunit >=0.10.0.0 && <0.11
, tasty-quickcheck >=0.10.0.0 && <0.11
, vector >=0.12.0.0 && <0.13