cabal-version: 3.0

name: stripe-wreq
version: 1.0.1.17
synopsis: Use the Stripe API via Wreq
category: Web

description: This package helps you make requests to the Stripe API
    in conjunction with the wreq package. This is a minimal library
    that makes no attempt obscure either its underpinnings in Wreq
    or any of the details of the Stripe API. Responses are returned
    as aeson values.

homepage:    https://github.com/typeclasses/stripe
bug-reports: https://github.com/typeclasses/stripe/issues

author:     Chris Martin
maintainer: Chris Martin, Julie Moronuki

copyright: 2019-2021 Mission Valley Software LLC
license: MIT
license-file: license.txt

extra-source-files: *.md

library
    hs-source-dirs: library
    default-language: GHC2021
    ghc-options: -Wall -fno-warn-missing-signatures

    exposed-modules:
        Stripe.Wreq

    build-depends:
      , aeson ^>= 2.0.3 || ^>= 2.1 || ^>= 2.2
      , base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19
      , bytestring ^>= 0.11 || ^>= 0.12
      , lens ^>= 5.0.1 || ^>= 5.1 || ^>= 5.2
      , stripe-concepts ^>= 1.0.3
      , text ^>= 1.2.5 || ^>= 2.0 || ^>= 2.1
      , wreq ^>= 0.5.3