packages feed

trasa-client-0.3: trasa-client.cabal

name:                trasa-client
version:             0.3
synopsis:            Type safe http requests
license:             MIT
license-file:        LICENSE
author:              Kyle McKean
maintainer:          mckean.kylej@gmail.com
copyright:           @2017 Kyle McKean
category:            Web
build-type:          Simple
cabal-version:       >=1.10
description:         Http client integration for trasa

library
  exposed-modules:     Trasa.Client
                     , Trasa.Client.Implicit
  build-depends:       base >= 4.9 && < 5
                     , bytestring == 0.10.*
                     , binary == 0.8.*
                     , text == 1.2.*
                     , containers >= 0.5
                     , case-insensitive == 1.2.*
                     , http-types >= 0.9
                     , http-media >= 0.6 && < 0.8
                     , http-client == 0.5.*
                     , trasa == 0.3.*
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Main.hs
  build-depends:       base >= 4.9 && < 5
                     , trasa
                     , trasa-client
                     , http-types
                     , http-client
                     , unordered-containers
                     , text
                     , ip
                     , aeson
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/haskell-trasa/trasa