]> Git — Sourcephile - majurity.git/blob - hjugement-cli/hjugement-cli.cabal
cli: add administrator election
[majurity.git] / hjugement-cli / hjugement-cli.cabal
1 name: hjugement-cli
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 0.0.0.20190714
6 category: Politic
7 synopsis: Majority Judgment and Helios-C command line tool
8 description:
9 Work in progress command line interface for:
10 .
11 * <https://hackage.haskell.org/package/hjugement hjugement>
12 * <https://hackage.haskell.org/package/hjugemen-protocol hjugement-protocol>
13 .
14 Run with --help parameter to read the manual.
15 extra-doc-files:
16 license: GPL-3
17 license-file: COPYING
18 stability: experimental
19 author: Julien Moutinho <julm+hjugement@autogeree.net>
20 maintainer: Julien Moutinho <julm+hjugement@autogeree.net>
21 bug-reports: Julien Moutinho <julm+hjugement@autogeree.net>
22 -- homepage:
23
24 build-type: Simple
25 cabal-version: 1.24
26 tested-with: GHC==8.6.4
27 extra-source-files:
28 stack.yaml
29 extra-tmp-files:
30
31 Source-Repository head
32 location: git://git.autogeree.net/hjugement
33 type: git
34
35 Executable hjugement
36 hs-source-dirs: src
37 main-is: Main.hs
38 other-modules:
39 Hjugement.CLI
40 Hjugement.CLI.Administrator
41 Hjugement.CLI.Registrar
42 Hjugement.CLI.Trustee
43 Hjugement.CLI.Utils
44 Paths_hjugement
45 default-language: Haskell2010
46 default-extensions:
47 AllowAmbiguousTypes
48 ConstraintKinds
49 DefaultSignatures
50 FlexibleContexts
51 FlexibleInstances
52 GeneralizedNewtypeDeriving
53 LambdaCase
54 MonoLocalBinds
55 MultiParamTypeClasses
56 NamedFieldPuns
57 NoImplicitPrelude
58 NoMonomorphismRestriction
59 RecordWildCards
60 ScopedTypeVariables
61 StandaloneDeriving
62 TupleSections
63 TypeApplications
64 TypeFamilies
65 TypeOperators
66 ghc-options:
67 -Wall
68 -Wincomplete-uni-patterns
69 -Wincomplete-record-updates
70 -fno-warn-tabs
71 -- -fhide-source-paths
72 build-depends:
73 hjugement >= 2.0
74 , hjugement-protocol >= 0.0.1
75 , aeson >= 1.3
76 , base >= 4.6 && < 5
77 , base64-bytestring >= 1.0
78 , binary >= 0.8
79 , bytestring >= 0.10
80 , containers >= 0.5
81 , cryptonite >= 0.25
82 , deepseq >= 1.4
83 , directory >= 1.3
84 , filepath >= 1.4
85 , ghc-prim >= 0.5
86 , lens-family-core >= 1.2
87 , memory >= 0.14
88 , pipes >= 4.3
89 , pipes-aeson >= 0.4
90 , pipes-bytestring >= 2.1
91 , pipes-group >= 1.0
92 , pipes-parse >= 3.0
93 , pipes-safe >= 2.3
94 , pipes-text >= 0.0.2.5
95 , random >= 1.1
96 , reflection >= 2.1
97 , symantic-cli >= 2.3.2
98 , symantic-document >= 1.5
99 , terminal-size >= 0.3
100 , text >= 1.2
101 , time >= 1.8
102 , transformers >= 0.5
103 , unix >= 2.7
104 , unordered-containers >= 0.2.8