-
Notifications
You must be signed in to change notification settings - Fork 0
/
wai-handler-hal-example.cabal
78 lines (68 loc) · 2.21 KB
/
wai-handler-hal-example.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
cabal-version: 2.2
name: wai-handler-hal-example
version: 0.1.0.0
synopsis: AWS Lambda application using servant and wai-handler-hal
description:
The executable built by this package defines and implements a
Servant API, and then uses wai-handler-hal to package it into a
binary which can run as a Lambda Proxy Integration of an AWS API
Gateway REST API.
bug-reports: http://github.com/bellroy/wai-handler-hal/issues
license: BSD-3-Clause
license-file: LICENSE
author: Bellroy Tech Team <[email protected]>
maintainer: Bellroy Tech Team <[email protected]>
copyright: Copyright (C) 2021 Bellroy Pty Ltd
category: AWS, Cloud
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
tested-with:
GHC ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.6
|| ==9.8.2
common opts
default-language: Haskell2010
ghc-options:
-Wall -Wcompat -Widentities -Wincomplete-record-updates
-Wincomplete-uni-patterns -Werror=incomplete-patterns
-Wredundant-constraints -Wpartial-fields -Wtabs
-Wmissing-local-signatures -fhelpful-errors
-fprint-expanded-synonyms -fwarn-unused-do-bind
common deps
build-depends:
, aeson >=1.5.6.0 && <1.6 || >=2.0 && <2.3
, base >=4.12 && <4.20
, servant >=0.18.2 && <0.21
, servant-server >=0.18.2 && <0.21
, text ^>=1.2.3 || ^>=2.0 || ^>=2.1
, wai-handler-hal
executable wai-handler-hal-example-hal
import: opts, deps
hs-source-dirs: exe/hal
main-is: Main.hs
build-depends:
, hal >=0.4.7 && <0.4.11 || >=1.0.0 && <1.2
, wai-handler-hal-example
ghc-options: -threaded
executable wai-handler-hal-example-warp
import: opts, deps
hs-source-dirs: exe/warp
main-is: Main.hs
build-depends:
, wai-handler-hal-example
, warp >=3.3.14 && <3.5
ghc-options: -threaded
library
import: opts, deps
hs-source-dirs: src
exposed-modules: Example
source-repository head
type: git
location: https://github.com/bellroy/wai-handler-hal.git