packages feed

wai-middleware-travisci-0.1.0: wai-middleware-travisci.cabal

cabal-version: 2.0

name: wai-middleware-travisci
version: 0.1.0
synopsis: WAI middleware for authenticating webhook payloads from Travis CI
description:
  This package provides a simple WAI middleware for authenticating webhook
  payloads from @travis-ci.com@.
homepage: https://github.com/mitchellwrosen/wai-middleware-travisci
bug-reports: https://github.com/mitchellwrosen/wai-middleware-travisci/issues
license: BSD3
license-file: LICENSE
author: Mitchell Rosen
maintainer: Mitchell Rosen <mitchellwrosen@gmail.com>
copyright: 2018 Mitchell Rosen
category: Web
build-type: Simple
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.2

source-repository head
  type: git
  location: https://github.com/mitchellwrosen/wai-middleware-travisci.git

library
  build-depends:
      aeson >= 0.8
    , base == 4.9.* || == 4.10.* || ^>= 4.11
    , base64-bytestring
    , bytestring ^>= 0.10.8.0
    , cryptonite >= 0.3
    , http-types >= 0.7.0
    , transformers >= 0.2
    , text
    , vault >= 0.3.0.0
    , wai >= 3.0.1
  ghc-options: -Wall -Wcompat
  exposed-modules: Network.Wai.Middleware.TravisCI
  default-language: Haskell2010