-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathservant-github-webhook.cabal
109 lines (103 loc) · 2.68 KB
/
servant-github-webhook.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
-- Initial servant-github-webhook.cabal generated by cabal init. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: servant-github-webhook
version: 0.4.2.0
synopsis: Servant combinators to facilitate writing GitHub webhooks.
description:
This package provides servant combinators that make writing safe GitHub
webhooks very simple.
.
It features automatic verification of the digital signatures provided by
GitHub in the webhook HTTP requests as well as route dispatching based on
repository event type.
homepage: https://github.com/tsani/servant-github-webhook
license: MIT
license-file: LICENSE
author: Jacob Thomas Errington
maintainer: [email protected]
copyright: Jacob Thomas Errington (c) 2016-2018
category: Web
build-type: Simple
tested-with: GHC == 8.6.5
extra-source-files:
ChangeLog.md
README.md
stack.yaml
cabal-version: >=1.10
bug-reports: https://github.com/tsani/servant-github-webhook/issues
source-repository head
type: git
location: https://github.com/tsani/servant-github-webhook.git
library
exposed-modules:
Servant.GitHub.Webhook
hs-source-dirs: src
default-language: Haskell2010
ghc-options:
-Wall
build-depends:
base ==4.*,
aeson >=2.0.1.0,
base16-bytestring >=0.1,
bytestring >= 0.10,
cryptonite >=0.19,
github >=0.15,
github-webhooks >=0.12,
http-types >=0.9,
unordered-containers >= 0.2,
memory >=0.13,
servant >=0.13,
servant-server >=0.13,
string-conversions >=0.4,
text >=1.2,
transformers,
wai >=3.2
test-suite multikey
type: exitcode-stdio-1.0
ghc-options:
-Wall
hs-source-dirs: test/multikey
main-is: Main.hs
default-language: Haskell2010
build-depends:
aeson,
base,
bytestring,
servant-server,
servant-github-webhook,
wai,
warp,
transformers
test-suite singlekey
type: exitcode-stdio-1.0
ghc-options:
-Wall
hs-source-dirs: test/singlekey
main-is: Main.hs
default-language: Haskell2010
build-depends:
aeson,
base,
bytestring,
servant-server,
servant-github-webhook,
wai,
warp,
transformers
test-suite dynamickey
type: exitcode-stdio-1.0
ghc-options:
-Wall
hs-source-dirs: test/dynamickey
main-is: Main.hs
default-language: Haskell2010
build-depends:
aeson,
base,
bytestring,
servant-server,
servant-github-webhook,
text,
wai,
warp,
transformers