]> Git — Sourcephile - reloto.git/blob - htirage.cabal
Add Htirage.Sequence.
[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.1.0.20180829
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.4.3
20 extra-source-files:
21 stack.yaml
22 extra-tmp-files:
23
24 source-repository head
25 location: git://git.autogeree.net/htirage
26 type: git
27
28 Library
29 exposed-modules:
30 Htirage
31 Htirage.Bits
32 Htirage.Combin
33 Htirage.Draw
34 Htirage.Random
35 Htirage.Sequence
36 Htirage.Tutorial
37 default-language: Haskell2010
38 default-extensions:
39 NoImplicitPrelude
40 ghc-options:
41 -Wall
42 -Wincomplete-uni-patterns
43 -Wincomplete-record-updates
44 -fno-warn-tabs
45 -- -fhide-source-paths
46 build-depends:
47 base >= 4.6 && < 5
48
49 Test-Suite htirage-test
50 type: exitcode-stdio-1.0
51 default-language: Haskell2010
52 default-extensions:
53 ghc-options: -Wall -fno-warn-tabs
54 hs-source-dirs: test
55 main-is: Main.hs
56 other-modules:
57 QuickCheck
58 build-depends:
59 htirage
60 , base >= 4.6 && < 5
61 , containers >= 0.5
62 , QuickCheck >= 2.0
63 , tasty >= 0.11
64 , tasty-quickcheck
65 , text >= 1.2
66 , transformers >= 0.5