-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbls.cabal
87 lines (85 loc) · 1.61 KB
/
bls.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
name: bls
version: 0.0.0
synopsis: Boneh–Lynn–Shacham signature scheme.
description: A high-level API for signing and verifying message digests using the BLS signature scheme.
license: GPL-3
license-file: LICENSE
copyright: 2017 DFINITY Stiftung
author: Ben Lynn <blynn@dfinity.org>
maintainer: Enzo Haussecker <enzo@dfinity.org>
stability: Experimental
category: Crypto
homepage: https://github.com/dfinity/hs-bls
bug-reports: https://github.com/dfinity/hs-bls/issues
build-type: Simple
cabal-version: >=1.10
library
build-depends:
base,
binary,
bindings-DSL,
bytestring,
containers
c-sources:
cbits/hs-bls.c
cc-options:
-fPIC
default-extensions:
DeriveGeneric
GeneralizedNewtypeDeriving
default-language:
Haskell2010
exposed-modules:
Crypto.BLS
extra-libraries:
bls384
crypto
gmpxx
mcl
stdc++
ghc-options:
-O2
-Wall
-fno-warn-unused-top-binds
hs-source-dirs:
src
test-suite bls-unit-tests
build-depends:
HUnit,
QuickCheck,
base,
binary,
bindings-DSL,
bytestring,
containers,
random-shuffle
c-sources:
cbits/hs-bls.c
cc-options:
-fPIC
default-extensions:
DeriveGeneric
GeneralizedNewtypeDeriving
RecordWildCards
default-language:
Haskell2010
extra-libraries:
bls384
crypto
gmpxx
mcl
stdc++
ghc-options:
-O2
-Wall
-fno-warn-orphans
-fno-warn-unused-top-binds
hs-source-dirs:
src,
test
main-is:
Test.hs
other-modules:
Crypto.BLS
type:
exitcode-stdio-1.0