packages feed

ballast-0.1.0.0: ballast.cabal

name:                ballast
version:             0.1.0.0
synopsis:            Shipwire API client
description:         Please see README.md
homepage:            https://github.com/bitemyapp/ballast#readme
license:             BSD3
license-file:        LICENSE
author:              Alexey Zabelin, Chris Allen
maintainer:          cma@bitemyapp.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.4.30 && <0.6
                     , http-client-tls
                     , 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.3,
                       hspec-expectations,
                       text,
                       time,
                       either-unwrap
                       
  default-language:    Haskell2010

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