-
Notifications
You must be signed in to change notification settings - Fork 1
/
scisco.cabal
95 lines (92 loc) · 3.49 KB
/
scisco.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
name: scisco
version: 0.1.0.0
synopsis: A privacy-preserving, auditable, distributed voting system.
homepage: https://github.com/cwgoes/scisco
author: Christopher Goes
maintainer: [email protected]
copyright: 2017 Christopher Goes
category: Web
build-type: Custom
cabal-version: >=1.10
extra-source-files: README.md
custom-setup
setup-depends: base, Cabal, proto-lens-protoc
executable scisco
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
default-extensions: DeriveGeneric
, StandaloneDeriving
, OverloadedStrings
, NoImplicitPrelude
, UnicodeSyntax
, ScopedTypeVariables
, EmptyDataDecls
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, FunctionalDependencies
, RankNTypes
, NoMonomorphismRestriction
, FlexibleContexts
, FlexibleInstances
, LambdaCase
build-depends: base >= 4.7 && < 5
, proto-lens
, proto-lens-arbitrary
, proto-lens-protoc
, bytestring
, foundation
, scisco
ghc-options: -j4 -ferror-spans -Wall -fno-warn-orphans -fno-warn-name-shadowing -fno-warn-type-defaults -threaded -rtsopts -O3
library
hs-source-dirs: src
exposed-modules: ABCI.Server
Scisco.Core
other-modules: Examples.Counter
Scisco.Consensus
Scisco.LRS
Scisco.Types
Proto.Types
default-language: Haskell2010
default-extensions: DeriveGeneric
, StandaloneDeriving
, OverloadedStrings
, NoImplicitPrelude
, UnicodeSyntax
, ScopedTypeVariables
, EmptyDataDecls
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, FunctionalDependencies
, RankNTypes
, NoMonomorphismRestriction
, FlexibleContexts
, FlexibleInstances
, LambdaCase
build-depends: base >= 4.7 && < 5
, foundation
, bytestring
, proto-lens
, proto-lens-arbitrary
, proto-lens-protoc
, lens
, text
, conduit
, conduit-extra
, conduit-combinators
, network-conduit
, binary
, cryptonite
, unordered-containers
, containers
, aeson
, bimap
, vector
, mtl
, hashable
, random
, Spock
, base64-bytestring
, base16-bytestring
, http-types
ghc-options: -j4 -ferror-spans -Wall -fno-warn-orphans -fno-warn-name-shadowing -fno-warn-type-defaults -O3