-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwai-handler-hal.cabal
89 lines (82 loc) · 2.92 KB
/
wai-handler-hal.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
cabal-version: 2.2
name: wai-handler-hal
version: 0.4.0.1
synopsis: Wrap WAI applications to run on AWS Lambda
description:
This library provides a function 'Network.Wai.Handler.Hal.run' to
lift a @wai@ 'Network.Wai.Application' into a function that can be
passed to @hal@'s 'AWS.Lambda.Runtime.mRuntime'. This allows you to
run applications written in mature web frameworks (e.g., @servant@)
on AWS Lambda, as proxy integrations of API Gateway REST APIs.
.
More details, including deployment advice, are available in the
repository's @README.md@.
homepage: http://github.com/bellroy/wai-handler-hal
bug-reports: http://github.com/bellroy/wai-handler-hal/issues
license: BSD-3-Clause
license-file: LICENSE
author: Bellroy Tech Team <haskell@bellroy.com>
maintainer: Bellroy Tech Team <haskell@bellroy.com>
copyright: Copyright (C) 2021, 2024 Bellroy Pty Ltd
category: AWS, Cloud
build-type: Simple
extra-doc-files: CHANGELOG.md
extra-source-files:
README.md
test/data/ProxyRequest.json
test/golden/WaiRequest.txt
tested-with:
GHC ==8.6.5
|| ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.4
|| ==9.4.5
|| ==9.6.6
|| ==9.8.2
|| ==9.10.1
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:
, base >=4.12 && <4.21
, base64-bytestring >=1.0.0.0 && <1.3
, bytestring >=0.10.8 && <0.13
, case-insensitive ^>=1.2.0.0
, hal >=0.4.7 && <0.4.11 || >=1.0.0 && <1.2
, http-media ^>=0.8.1.1
, http-types ^>=0.12.3
, network >=3.2.3.0 && <3.3
, text ^>=1.2.3 || ^>=2.0 || ^>=2.1
, unordered-containers ^>=0.2.10.0
, vault ^>=0.3.1.0
, wai ^>=3.2.2
library
import: opts, deps
exposed-modules: Network.Wai.Handler.Hal
hs-source-dirs: src
test-suite wai-handler-hal-tests
import: deps, opts
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
ghc-options: -threaded
other-modules: Network.Wai.Handler.HalTest
build-tool-depends: tasty-discover:tasty-discover ^>=4.2.2
build-depends:
, aeson >=1.5.6.0 && <1.6 || >=2.0 && <2.3
, pretty-simple ^>=4.1.0.0
, tasty >=1.3 && <1.6
, tasty-golden ^>=2.3
, tasty-hunit >=0.9 && <0.11
, text
, wai-handler-hal
source-repository head
type: git
location: https://github.com/bellroy/wai-handler-hal.git