]> Git — Sourcephile - reloto.git/blob - htirage.cabal
Bump stack resolver to lts-9.0.
[reloto.git] / htirage.cabal
1 author: Julien Moutinho <julm+htirage@autogeree.net>
2 build-type: Simple
3 cabal-version: >= 1.10
4 category: Language
5 description: An equiprobable alternative to <https://tools.ietf.org/html/rfc3797 Publicly Verifiable Nominations Committee (NomCom) Random Selection>.
6 extra-source-files:
7 extra-tmp-files:
8 license: GPL-3
9 license-file: COPYING
10 maintainer: Julien Moutinho <julm+htirage@autogeree.net>
11 name: htirage
12 stability: experimental
13 synopsis: Equiprobable draw from publicly verifiable random data.
14 tested-with: GHC==8.0.2
15 version: 1.20170804
16
17 source-repository head
18 location: git://git.autogeree.net/htirage
19 type: git
20
21 Library
22 exposed-modules:
23 Htirage
24 Htirage.Bits
25 Htirage.Combin
26 Htirage.Draw
27 Htirage.Random
28 Htirage.Tutorial
29 default-language: Haskell2010
30 default-extensions:
31 ghc-options: -Wall -fno-warn-tabs
32 build-depends:
33 base >= 4.6 && < 5
34
35 Test-Suite htirage-test
36 type: exitcode-stdio-1.0
37 default-language: Haskell2010
38 default-extensions:
39 ghc-options: -Wall -fno-warn-tabs
40 hs-source-dirs: test
41 main-is: Main.hs
42 other-modules:
43 QuickCheck
44 build-depends:
45 base >= 4.6 && < 5
46 , containers >= 0.5 && < 0.6
47 , htirage
48 , QuickCheck >= 2.0
49 , tasty >= 0.11
50 , tasty-quickcheck
51 , text
52 , transformers >= 0.4 && < 0.6