-
Notifications
You must be signed in to change notification settings - Fork 3
/
hs-abci.cabal
91 lines (86 loc) · 2.37 KB
/
hs-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
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
cabal-version: >=1.24
name: hs-abci
version: 0.1.1.0
synopsis: Tendermint's ABCI server library
description: TBD
homepage: https://github.com/albertov/hs-abci#readme
license: BSD3
license-file: LICENSE
author: Alberto Valverde González
maintainer: [email protected]
copyright: 2017 Alberto Valverde González
category: Network
build-type: Simple
extra-source-files:
README.md
library
hs-source-dirs: src
exposed-modules:
Network.ABCI
, Network.ABCI.Types
, Network.ABCI.Internal.Wire
other-modules:
Proto.Types,
Proto.Types_Fields,
Proto.Vendored.Gogo.Protobuf.Gogoproto.Gogo,
Proto.Vendored.Gogo.Protobuf.Gogoproto.Gogo_Fields,
Proto.Vendored.Google.Protobuf.Timestamp,
Proto.Vendored.Google.Protobuf.Timestamp_Fields,
Proto.Vendored.Tendermint.Tendermint.Crypto.Merkle.Merkle,
Proto.Vendored.Tendermint.Tendermint.Crypto.Merkle.Merkle_Fields,
Proto.Vendored.Tendermint.Tendermint.Libs.Common.Types,
Proto.Vendored.Tendermint.Tendermint.Libs.Common.Types_Fields
build-depends:
base >= 4.7 && < 5
, base16-bytestring
, binary
, bytestring
, conduit
, conduit-extra
, data-default
, microlens
, monad-control
, network
, proto-lens
, proto-lens-runtime
, string-conversions
, text
, transformers
, unliftio
default-language: Haskell2010
default-extensions:
TypeApplications
ghc-options: -Wall
executable hs-abci-counter
hs-source-dirs: examples
main-is: Counter.hs
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -main-is Counter
build-depends:
base
, binary
, bytestring
, hex
, hs-abci
, stm
, text
default-language: Haskell2010
test-suite hs-abci-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends:
base
, binary
, bytestring
, conduit
, hs-abci
, hspec
, hspec-core
, QuickCheck
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
other-modules:
Network.ABCI.Internal.WireSpec
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/albertov/hs-abci