gdritter repos shelob / master shelob-client / shelob-client.cabal
master

Tree @master (Download .tar.gz)

shelob-client.cabal @masterraw · history · blame

name:             shelob-client
version:          0.1.0.0
-- synopsis:
-- description:
license:          BSD3
license-file:     LICENSE
author:           Getty Ritter <gettyritter@gmail.com>
maintainer:       Getty Ritter <gettyritter@gmail.com>
copyright:        ©2017 Getty Ritter
-- category:
build-type:       Simple
cabal-version:    >= 1.14

library
  exposed-modules:     Network.Shelob.Client
  hs-source-dirs:      src
  ghc-options:         -Wall
  build-depends:       base >=4.7 && <5
                     , shelob
                     , text
                     , bytestring
                     , aeson
                     , network
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings,
                       ScopedTypeVariables

executable example
  hs-source-dirs: example
  main-is: Main.hs
  ghc-options: -Wall
  build-depends: base, shelob, shelob-client, pretty-show
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings