packages feed

haskell-abci-0.1.0.0: haskell-abci.cabal

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:          cwgoes@protonmail.ch
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