-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.yaml
103 lines (95 loc) · 2.38 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
100
101
102
103
name: sonic
version: 0.3.0
synopsis: Sonic
description: Please see the README on GitHub at <https://github.com/adjoint-io/sonic#readme>
maintainer: Adjoint Inc ([email protected])
license: MIT
github: adjoint-io/sonic
category: Cryptography
dependencies:
- 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
default-extensions:
- LambdaCase
- RecordWildCards
- OverloadedStrings
- NoImplicitPrelude
- FlexibleInstances
- FlexibleContexts
- ScopedTypeVariables
- RankNTypes
extra-source-files:
- README.md
- ChangeLog.md
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
library:
exposed-modules:
- Sonic.CommitmentScheme
- Sonic.Constraints
- Sonic.Protocol
- Sonic.SRS
- Sonic.Signature
- Sonic.Utils
source-dirs:
- src
tests:
sonic-test:
main: Main.hs
source-dirs: test
dependencies:
- 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
- QuickCheck >=2.12.0 && <2.14
benchmarks:
sonic-benchmarks:
source-dirs:
- bench
- test
main: Main.hs
dependencies:
- sonic
- criterion >=1.5.6.1 && <1.6
- QuickCheck >=2.12.0 && <2.14
- tasty >=1.2 && <1.3
- tasty-quickcheck >=0.10.0.0 && <0.11
- tasty-hunit >=0.10.0.0 && <0.11
other-modules:
- Test.Reference
executables:
sonic-example:
main: Main
dependencies:
- 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
- QuickCheck >=2.12.0 && <2.14
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
source-dirs:
- examples