jwt-0.1.1: jwt.cabal
-- Initial atlassian-jwt.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: jwt
version: 0.1.1
synopsis: JSON Web Token (JWT) decoding and encoding
license: MIT
license-file: LICENSE
author: Stefan Saasen
maintainer: stefan@saasen.me
homepage: https://bitbucket.org/ssaasen/haskell-jwt
bug-reports: https://bitbucket.org/ssaasen/haskell-jwt/issues
category: Web
build-type: Simple
cabal-version: >=1.18
description:
JSON Web Token (JWT) is a compact URL-safe means of representing claims to be transferred between two parties.
.
To get started, see the documentation for the "Web.JWT" module.
source-repository head
type: git
location: https://ssaasen@bitbucket.org/ssaasen/haskell-jwt.git
library
exposed-modules: Web.JWT
build-depends: base >= 4.6 && < 4.7
, cryptohash >= 0.11
, base64-bytestring >= 1.0
, bytestring >= 0.10
, text >= 0.11
, aeson >= 0.7
, containers >= 0.5
, unordered-containers >= 0.2
, scientific >= 0.2
, data-default >= 0.5
, http-types >= 0.8
, network >= 2.4
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
--Werror
-fno-warn-unused-do-bind
-fno-warn-orphans
-fno-warn-name-shadowing
test-suite testsuite
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: TestRunner.hs
other-modules: Web.JWTTests
hs-source-dirs: tests/src, src
build-depends: base < 5 && >= 4.4
, tasty >= 0.7
, tasty-th >= 0.1
, tasty-hspec >= 0.1
, tasty-hunit >= 0.4
, tasty-quickcheck >= 0.3
, HUnit
, QuickCheck >= 2.4.0.1
, cryptohash
, base64-bytestring >= 1.0
, bytestring >= 0.10
, text >= 0.11
, aeson
, scientific >= 0.2
, containers
, unordered-containers
, data-default
, http-types
, network
cpp-options: -DTEST