-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgithub-post-receive.cabal
41 lines (39 loc) · 1.46 KB
/
github-post-receive.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
name: github-post-receive
version: 1.2.0.1
synopsis: GitHub webhooks library
description: This is a library to construct github webhooks servers.
.
Currently, this library supports following events:
.
* push
.
* status
homepage: https://github.com/amutake/github-post-receive
license: BSD3
license-file: LICENSE
author: Shohei Yasutake
maintainer: Shohei Yasutake <[email protected]>
copyright: Copyright (C) 2013 Shohei Yasutake
category: Web
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/amutake/github-post-receive.git
library
exposed-modules: Github.PostReceive
, Github.PostReceive.Types
, Github.PostReceive.Server
hs-source-dirs: src
build-depends: base ==4.*
, bytestring >=0.10
, text >=0.11
, containers
, aeson >=0.6.1
, email-validate >=1.0
, http-types >=0.8
, wai ==3.*
, warp >=3.0.1 && < 4
, wai-logger ==2.*
ghc-options: -Wall -fno-warn-orphans -fno-warn-unused-do-bind
default-language: Haskell2010