-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathjose-jwt.cabal
117 lines (106 loc) · 3.46 KB
/
jose-jwt.cabal
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
Name: jose-jwt
Version: 0.10.0
Synopsis: JSON Object Signing and Encryption Library
Homepage: http://github.com/tekul/jose-jwt
Bug-Reports: http://github.com/tekul/jose-jwt/issues
Description:
.
An implementation of the JOSE suite of IETF standards
and the closely related JWT (JSON web token) spec
(<https://tools.ietf.org/html/rfc7519/>).
.
Both signed and encrypted JWTs are supported, as well as simple
JWK keys.
Author: Luke Taylor <[email protected]>
Maintainer: Luke Taylor <[email protected]>
License: BSD3
License-File: LICENSE
Build-Type: Simple
Cabal-Version: 1.16
Category: JSON, Cryptography
Extra-Source-Files:
README.md
CHANGELOG.md
tests/*.json
-- disable doctests with -f-doctest
Flag doctest
default: False
manual: True
Source-Repository head
Type: git
Location: https://github.com/tekul/jose-jwt.git
Library
Default-Language: Haskell2010
Exposed-modules: Jose.Jwt
, Jose.Jws
, Jose.Jwe
, Jose.Jwa
, Jose.Jwk
, Jose.Internal.Base64
, Jose.Internal.Crypto
, Jose.Internal.Parser
Other-Modules: Jose.Types
if impl(ghc < 8.0)
Buildable: False
else
Build-depends: base >= 4.9 && < 5
, aeson >= 1.5 && < 2.3
, attoparsec >= 0.12.0.0
, bytestring >= 0.9
, cereal >= 0.4
, containers >= 0.4
, crypton >= 0.32
, memory >= 0.10
, mtl >= 2.1.3.1
, text >= 0.11
, time >= 1.4
, transformers >= 0.3
, transformers-compat >= 0.4
, unordered-containers >= 0.2
, vector >= 0.10
Ghc-Options: -Wall
Test-suite tests
Default-Language: Haskell2010
Type: exitcode-stdio-1.0
Other-Modules: Tests.JwsSpec
, Tests.JweSpec
, Tests.JwkSpec
Build-depends: jose-jwt
, base >= 4.9 && < 5
, aeson
, bytestring
, crypton
, memory
, mtl
, text
, unordered-containers
, vector
, hspec >= 1.6
, HUnit >= 1.2
, QuickCheck >= 2.4
Ghc-options: -Wall -rtsopts -fno-warn-missing-signatures
Hs-source-dirs: tests
Main-is: tests.hs
Test-suite doctests
Default-Language: Haskell2010
Type: exitcode-stdio-1.0
Main-is: doctests.hs
Default-Extensions: OverloadedStrings
if !flag(doctest)
Buildable: False
else
Build-depends: base >= 4.9 && < 5
, doctest >= 0.9.11
, crypton
Benchmark bench-jwt
Default-Language: Haskell2010
Hs-source-dirs: benchmarks
Main-is: bench.hs
Other-Modules: Keys
Type: exitcode-stdio-1.0
Build-depends: jose-jwt
, base >= 4.9 && < 5
, bytestring
, criterion
, crypton
Ghc-Options: -Wall -fno-warn-missing-signatures