-
Notifications
You must be signed in to change notification settings - Fork 8
/
servant-hmac-auth.cabal
106 lines (99 loc) · 4.08 KB
/
servant-hmac-auth.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
cabal-version: 2.4
name: servant-hmac-auth
version: 0.1.8
synopsis: Servant authentication with HMAC
description: Servant authentication with HMAC. See README.md for usage example.
homepage: https://github.com/holmusk/servant-hmac-auth
bug-reports: https://github.com/holmusk/servant-hmac-auth/issues
license: MIT
license-file: LICENSE
author: Holmusk
maintainer: tech@holmusk.com
copyright: 2018 Holmusk
category: Web, Cryptography
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 9.0.2
GHC == 9.2.8
GHC == 9.4.8
GHC == 9.6.6
GHC == 9.8.2
GHC == 9.10.1
source-repository head
type: git
location: https://github.com/holmusk/servant-hmac-auth.git
common common-options
build-depends: base >= 4.11.1.0 && < 4.21
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-Wpartial-fields
-fhide-source-paths
default-language: Haskell2010
default-extensions: BangPatterns
ConstraintKinds
DataKinds
DeriveGeneric
DerivingStrategies
DerivingVia
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
MultiParamTypeClasses
OverloadedStrings
OverloadedLabels
RecordWildCards
ScopedTypeVariables
TypeApplications
TypeFamilies
TypeOperators
ViewPatterns
library
import: common-options
hs-source-dirs: src
exposed-modules: Servant.Auth.Hmac
Servant.Auth.Hmac.Crypto
Servant.Auth.Hmac.Client
Servant.Auth.Hmac.Server
build-depends: base64-bytestring >= 1.0 && <= 2
, bytestring ^>= 0.10 || ^>= 0.11 || ^>= 0.12
, case-insensitive ^>= 1.2
, containers >= 0.5.7 && < 0.8
, crypton >= 0.31 && < 2.0
, http-types ^>= 0.12
, http-client >= 0.6.4 && < 0.8
, memory >= 0.15 && < 0.19
, mtl ^>= 2.2.2 || ^>= 2.3
, servant ^>= 0.19 || ^>= 0.20
, servant-client ^>= 0.19 || ^>= 0.20
, servant-client-core ^>= 0.19 || ^>= 0.20
, servant-server ^>= 0.19 || ^>= 0.20
, transformers ^>= 0.5 || ^>= 0.6
, wai ^>= 3.2.2.1
test-suite servant-hmac-auth-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: servant-hmac-auth
, case-insensitive ^>= 1.2
, filepath
, hspec
, hspec-golden ^>= 0.2
, http-client >= 0.6.4 && < 0.8
, http-types ^>= 0.12
, servant-client ^>= 0.19 || ^>= 0.20
, servant-server ^>= 0.19 || ^>= 0.20
, text
, warp ^>= 3.3 || ^>= 3.4
other-modules: Servant.Auth.Hmac.CryptoSpec
Servant.Auth.HmacSpec
build-tool-depends: hspec-discover:hspec-discover == 2.*