File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
servant-auth/servant-auth-server Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ library
33
33
build-depends :
34
34
base >= 4.10 && < 4.16
35
35
, aeson >= 1.3.1.1 && < 1.6
36
- , base64-bytestring >= 1.0.0.1 && < 1.2
36
+ , base64-bytestring >= 1.0.0.1 && < 1.3
37
37
, blaze-builder >= 0.4.1.0 && < 0.5
38
38
, bytestring >= 0.10.6.0 && < 0.11
39
39
, case-insensitive >= 1.2.0.11 && < 1.3
@@ -55,6 +55,13 @@ library
55
55
, unordered-containers >= 0.2.9.0 && < 0.3
56
56
, wai >= 3.2.1.2 && < 3.3
57
57
58
+ if impl(ghc >= 9 )
59
+ build-depends :
60
+ -- base64-bytestring 1.2.1.0 contains important fix for GHC-9, lower versions
61
+ -- produce wrong results, thus corrupring JWT via jose package.
62
+ -- See: https://github.com/haskell/base64-bytestring/pull/46
63
+ base64-bytestring >= 1.2.1.0
64
+
58
65
exposed-modules :
59
66
Servant.Auth.Server
60
67
Servant.Auth.Server.Internal
@@ -87,8 +94,6 @@ test-suite readme
87
94
default-language : Haskell2010
88
95
if impl(ghcjs)
89
96
buildable : False
90
- if impl(ghc >= 9 )
91
- buildable : False
92
97
93
98
test-suite spec
94
99
type : exitcode-stdio-1.0
@@ -114,8 +119,6 @@ test-suite spec
114
119
, servant
115
120
, servant-server
116
121
, transformers
117
- if impl(ghc >= 9 )
118
- buildable : False
119
122
120
123
-- test dependencies
121
124
build-depends :
You can’t perform that action at this time.
0 commit comments