packages feed

ballast-0.2.0.0: ballast.cabal

name:                ballast
version:             0.2.0.0
synopsis:            Shipwire API client
description:         Please see README.md
homepage:            https://github.com/alexeyzab/ballast#readme
license:             BSD3
license-file:        LICENSE
author:              Alexey Zabelin, Chris Allen
maintainer:          zabelin.alex@gmail.com
copyright:           2016 Chris Allen
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Ballast
                       Ballast.Client
                       Ballast.Types
  build-depends:       base                 >= 4.7 && < 5
                     , aeson                >= 0.11.1 && <1.3
                     , bytestring           >= 0.10.0 && <0.11
                     , http-client          >= 0.5 && <0.6
                     , http-client-tls      >= 0.3 && <0.3.6
                     , http-types           >= 0.8 && <0.10
                     , text                 >= 0.11 && <1.3
                     , utf8-string
                     , time
                     , transformers
                     , hspec
                     , hspec-expectations
                     , vector               >= 0.10.9 && <0.13
                     , unordered-containers
                     , either-unwrap
  default-language:    Haskell2010
  ghc-options: -Wall

test-suite tests
  ghc-options: -Wall
  type: exitcode-stdio-1.0
  main-is: tests.hs
  hs-source-dirs: tests
  build-depends:       base,
                       ballast,
                       bytestring,
                       hspec                >= 1.8 && <2.5,
                       hspec-expectations,
                       text,
                       time,
                       either-unwrap,
                       http-client          >= 0.5 && <0.6,
                       http-client-tls      >= 0.3 && <0.3.6
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/alexeyzab/ballast