]> Git — Sourcephile - reloto.git/blob - htirage.cabal
Massage htirage.cabal.
[reloto.git] / htirage.cabal
1 name: htirage
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 2.0.0.20180213
6 category: Politic
7 synopsis: Equiprobable draw from publicly verifiable random data.
8 description: An equiprobable alternative to <https://tools.ietf.org/html/rfc3797 Publicly Verifiable Nominations Committee (NomCom) Random Selection>.
9 extra-doc-files:
10 license: GPL-3
11 license-file: COPYING
12 stability: experimental
13 author: Julien Moutinho <julm+htirage@autogeree.net>
14 maintainer: Julien Moutinho <julm+htirage@autogeree.net>
15 bug-reports: Julien Moutinho <julm+htirage@autogeree.net>
16
17 build-type: Simple
18 cabal-version: >= 1.10
19 tested-with: GHC==8.0.2
20 extra-source-files:
21 GNUmakefile
22 stack.yaml
23 extra-tmp-files:
24
25 source-repository head
26 location: git://git.autogeree.net/htirage
27 type: git
28
29 Library
30 exposed-modules:
31 Htirage
32 Htirage.Bits
33 Htirage.Combin
34 Htirage.Draw
35 Htirage.Random
36 Htirage.Tutorial
37 default-language: Haskell2010
38 default-extensions:
39 ghc-options:
40 -Wall
41 -Wincomplete-uni-patterns
42 -Wincomplete-record-updates
43 -fno-warn-tabs
44 -- -fhide-source-paths
45 build-depends:
46 base >= 4.6 && < 5
47
48 Test-Suite htirage-test
49 type: exitcode-stdio-1.0
50 default-language: Haskell2010
51 default-extensions:
52 ghc-options: -Wall -fno-warn-tabs
53 hs-source-dirs: test
54 main-is: Main.hs
55 other-modules:
56 QuickCheck
57 build-depends:
58 htirage
59 , base >= 4.6 && < 5
60 , containers >= 0.5
61 , QuickCheck >= 2.0
62 , tasty >= 0.11
63 , tasty-quickcheck
64 , text >= 1.2
65 , transformers >= 0.5