-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjwt.cabal
More file actions
99 lines (91 loc) · 3.34 KB
/
jwt.cabal
File metadata and controls
99 lines (91 loc) · 3.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
-- Initial atlassian-jwt.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: jwt
version: 0.2.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.
extra-source-files:
changelog
README.md
source-repository head
type: git
location: https://ssaasen@bitbucket.org/ssaasen/haskell-jwt.git
flag network-uri
description: Get Network.URI from the network-uri package
default: True
library
exposed-modules: Web.JWT
other-modules: Web.Base64
build-depends: base >= 4.6
, 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
, time >= 1.1
if flag(network-uri)
build-depends:
network-uri >= 2.6
, network >= 2.6
else
build-depends:
network >= 2.4 && < 2.6
, network-uri < 2.6
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, Web.Base64Tests
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
, time >= 1.1
if flag(network-uri)
build-depends:
network-uri >= 2.6
, network >= 2.6
else
build-depends:
network >= 2.4 && < 2.6
, network-uri < 2.6
cpp-options: -DTEST