wai-hmac-auth-1.0.0: wai-hmac-auth.cabal
name: wai-hmac-auth
version: 1.0.0
synopsis: hmac authentication tools for WAI apps
description: authenticate requests made to your WAI apps using HMAC.
homepage: https://github.com/raptros/wai-hmac-auth
license: BSD3
license-file: LICENSE
author: aidan coyne
maintainer: coynea90@gmail.com
copyright: 2014, aidan coyne
category: Web
build-type: Simple
bug-reports: https://github.com/raptros/wai-hmac-auth/issues
extra-source-files: README.md, CHANGELOG.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/raptros/wai-hmac-auth.git
library
default-language: Haskell2010
ghc-options:
-Wall
default-extensions:
OverloadedStrings
hs-source-dirs:
src
exposed-modules:
Network.Wai.Auth.HMAC
build-depends:
base >= 4.7 && < 4.8
, wai >= 3.0 && < 4.0
, http-types >= 0.8 && < 0.9
, bytestring >= 0.10 && < 0.11
, transformers == 0.4.*
, bifunctors >= 4.1 && <= 4.3
, mtl >= 2.2 && < 2.3
, cryptohash >= 0.11.6 && < 0.12
, containers == 0.5.5.*
, monad-loops >= 0.4 && < 0.5
, base64-bytestring >= 1.0 && < 1.1
, byteable >= 0.1.1 && < 0.1.2
test-suite tests
ghc-options: -Wall
type: exitcode-stdio-1.0
main-is: tests.hs
hs-source-dirs: tests
default-extensions:
OverloadedStrings
build-depends:
base >= 4.7 && < 4.8
, wai >= 3.0 && < 4.0
, wai-extra >= 3.0 && < 4.0
, wai-hmac-auth
, http-types >= 0.8 && < 0.9
, bytestring >= 0.10 && < 0.11
, transformers == 0.4.*
, bifunctors >= 4.1 && <= 4.3
, mtl >= 2.2 && < 2.3
, cryptohash >= 0.11.6 && < 0.12
, containers == 0.5.5.*
, monad-loops >= 0.4 && < 0.5
, base64-bytestring >= 1.0 && < 1.1
, hspec >= 2.1 && < 2.2
, byteable >= 0.1.1 && < 0.1.2