packages feed

approveapi-0.1.3.0: approveapi.cabal

name:           approveapi
version:        0.1.3.0
synopsis:       ApproveAPI Haskell Client
description:    .
                Haskell client for the ApproveAPI HTTP API
                ApproveAPI is a simple API to request a user's real-time approval on anything via email, sms + mobile push.
                category:       Web
homepage:       https://approveapi.com
author:         Kevin King
maintainer:     dev@approveapi.com
copyright:      2019 - ApproveAPI
license:        MIT
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
category:       API, Client

extra-source-files:
    README.md
    openapi.yaml

library
  hs-source-dirs:
      lib
  ghc-options: -Wall -funbox-strict-fields
  build-depends:
      aeson >=1.0 && <2.0
    , base >=4.7 && <5.0
    , base64-bytestring >1.0 && <2.0
    , bytestring >=0.10.0 && <0.11
    , containers >=0.5.0.0 && <0.6
    , deepseq >= 1.4 && <1.6
    , http-api-data >= 0.3.4 && <0.4
    , http-client >=0.5 && <0.6
    , http-media >= 0.4 && < 0.8
    , http-types >=0.8 && <0.13
    , iso8601-time >=0.1.3 && <0.2.0
    , microlens >= 0.4.3 && <0.5
    , network >=2.6.2 && <2.8
    , random >=1.1
    , safe-exceptions <0.2
    , text >=0.11 && <1.3
    , time >=1.5 && <1.10
    , transformers         >= 0.4.0.0 && < 0.6
    , unordered-containers >= 0.2.9 && < 0.3
    , random               >= 1.1 && < 1.2
    , case-insensitive     >= 1.2.0 && < 1.3
    , exceptions           >= 0.10.0 && < 0.11
    , mtl                  >= 2.2.2 && < 2.3
    , http-client-tls      >= 0.3.5 && < 0.4
    , katip                >= 0.4 && < 0.9
    , vector >=0.10.9 && <0.13
  other-modules:
      Paths_approveapi
  exposed-modules:
      ApproveApi
      ApproveApi.API
      ApproveApi.API.Approve
      ApproveApi.Client
      ApproveApi.Core
      ApproveApi.Logging
      ApproveApi.MimeTypes
      ApproveApi.Model
      ApproveApi.ModelLens
  default-language: Haskell2010

test-suite tests
  type: exitcode-stdio-1.0
  main-is: Test.hs
  hs-source-dirs:
      tests
  ghc-options: -Wall -fno-warn-orphans
  build-depends:
      approveapi
    , QuickCheck
    , aeson
    , base >=4.7 && <5.0
    , bytestring >=0.10.0 && <0.11
    , containers
    , hspec >=1.8
    , iso8601-time
    , mtl >=2.2.1
    , semigroups
    , text
    , time
    , transformers
    , unordered-containers
    , vector
  other-modules:
      ApproxEq
      Instances
      PropMime
  default-language: Haskell2010