name:                asap
version:             0.0.1
synopsis:            Atlassian Service Authentication Protocol
description:         Atlassian Service Authentication Protocol.
homepage:            https://bitbucket.org/atlassian-marketplace/haskell-asap
author:              Atlassian Marketplace
maintainer:          marketplace@atlassian.com
license:             Apache-2.0
license-file:        LICENSE.txt
category:            Web
build-type:          Simple
cabal-version:       >=1.8

source-repository head
  type:             git
  location:         https://bitbucket.org/atlassian-marketplace/haskell-asap.git

library
  hs-source-dirs:      lib
  exposed-modules:     Web.JWT.ASAP
  other-modules:       Web.JWT.ASAP.Env
                     , Web.JWT.ASAP.Error
  build-depends:       base                 >= 4.8 && < 4.12
                     , base64-bytestring    >= 1.0 && < 1.1
                     , bytestring           >= 0.10.8 && < 0.11
                     , jwt                  >= 0.10 && < 0.11
                     , mtl                  >= 2.2.2 && < 2.3
                     , text                 >= 1.2 && < 1.3
                     , transformers         >= 0.5 && < 0.6
                     , time                 >= 1.8 && < 1.9
                     , semigroups           >= 0.18 && < 0.19
                     , lens                 >= 4.16 && < 4.17
                     , uuid                 >= 1.3 && < 1.4

test-suite asap-tests
  type:                exitcode-stdio-1.0
  main-is:             test/Main.hs
  build-depends:       asap
                     , base
                     , time
                     , jwt
                     , hedgehog             >= 0.6 && < 0.7