-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhaskell-abci.cabal
66 lines (62 loc) · 2.45 KB
/
haskell-abci.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
name: haskell-abci
version: 0.1.0.0
synopsis: Haskell Application BlockChain Interface (ABCI) Server Library
description: Haskell library for writing Application BlockChain Interface (ABCI) servers. Licensed under BSD 3-clause (see LICENSE).
homepage: https://github.com/cwgoes/haskell-abci#readme
author: Christopher Goes
maintainer: [email protected]
copyright: 2017 Christopher Goes
license: BSD3
license-file: LICENSE
category: Web
build-type: Custom
cabal-version: >=1.10
extra-source-files: README.md, src/types.proto
custom-setup
setup-depends: base, Cabal, proto-lens-protoc
source-repository head
type: git
location: git://github.com/cwgoes/haskell-abci.git
executable haskell-abci-counter
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
default-extensions: NoImplicitPrelude
, OverloadedStrings
, UnicodeSyntax
, RankNTypes
, ExplicitForAll
, NoMonomorphismRestriction
build-depends: base >= 4.7 && < 5
, foundation
, text
, lens
, binary
, bytestring
, haskell-abci
ghc-options: -j4 -ferror-spans -Wall -fno-warn-orphans -fno-warn-name-shadowing -fno-warn-type-defaults -O3
library
hs-source-dirs: src
exposed-modules: Network.ABCI
other-modules: Network.ABCI.Server
Proto.Types
default-language: Haskell2010
default-extensions: NoImplicitPrelude
, OverloadedStrings
, UnicodeSyntax
, RankNTypes
, ExplicitForAll
, NoMonomorphismRestriction
build-depends: base >= 4.7 && < 5
, foundation
, bytestring
, proto-lens
, proto-lens-arbitrary
, proto-lens-protoc
, lens
, conduit
, conduit-extra
, conduit-combinators
, network-conduit
, binary
ghc-options: -j4 -ferror-spans -Wall -fno-warn-orphans -fno-warn-name-shadowing -fno-warn-type-defaults -O3