-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclt13-hs.cabal
59 lines (54 loc) · 1.81 KB
/
clt13-hs.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
name: clt13-hs
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
--license-file: LICENSE
author: Brent Carmer
maintainer: [email protected]
-- copyright:
category: Cryptography
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: CLT13
, CLT13.IndexSet
, CLT13.MMap
, CLT13.Encoding
, CLT13.Rand
, CLT13.Util
build-depends: base
, DRBG
, bytestring
, cereal
, containers
, crypto-api
, deepseq
, ghc-prim
, integer-gmp
, monad-parallel
, mtl
, parallel
ghc-options: -threaded -with-rtsopts=-N4
cpp-options: -DOPTIMIZATION_CRT_TREE=0
-DOPTIMIZATION_COMPOSITE_PS=1
default-language: Haskell2010
executable clt13-tests
default-language: Haskell2010
main-is: Test.hs
build-depends: base
, DRBG
, bytestring
, cereal
, containers
, crypto-api
, deepseq
, ghc-prim
, integer-gmp
, monad-parallel
, mtl
, parallel
ghc-options: -O2 -threaded "-with-rtsopts=-N4"
cpp-options: -DOPTIMIZATION_CRT_TREE=0
-DOPTIMIZATION_COMPOSITE_PS=1