-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb-template.cabal
More file actions
124 lines (118 loc) · 3.96 KB
/
web-template.cabal
File metadata and controls
124 lines (118 loc) · 3.96 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: web-template
version: 0.1.3.17
synopsis: Web template
description:
Web template includes:
- check for authorization
- check for version
- common types
- common exceptions
homepage: https://github.com/biocad/web-template#readme
license: BSD3
license-file: LICENSE
author: Bogdan Neterebskii
maintainer: neterebskiy@biocad.ru
copyright: (c) 2017, BIOCAD CBD
category: Web
build-type: Simple
extra-source-files:
README.md
index.html.tmpl
cabal-version: >=1.10
tested-with:
GHC ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.7
|| ==9.8.4
|| ==9.10.3
library
hs-source-dirs: src
exposed-modules: Web.Template
, Web.Template.Wai
, Web.Template.Servant
, Web.Template.Servant.API
, Web.Template.Servant.Aeson
, Web.Template.Servant.Auth
, Web.Template.Servant.Error
, Web.Template.Servant.Error.Instance
, Web.Template.Servant.Swagger
other-modules: Web.Template.Except
, Web.Template.Server
, Web.Template.Types
, Web.Template.Log
build-depends: base >= 4.7 && < 5
, aeson
, aeson-casing
, bcd-log
, bytestring
, cache
, clock
, cookie
, file-embed-lzma
, generic-override >= 0.2.0.0
, generic-override-aeson
, http-client
, http-client-tls
, http-types
, jose >= 0.8.4
, lens
, lens-aeson
, mtl
, network-uri
, openapi3 >= 3.2.0
, openid-connect >= 0.1.1
, resourcet
-- 0.20 has breaking changes
, scotty < 0.20
, servant >= 0.18
, servant-openapi3
, servant-server >= 0.18
, servant-swagger-ui >= 0.3.5.4.5.0
, servant-swagger-ui-core >= 0.3.5
, text
, time
, time
, vault
, wai
, warp
default-language: Haskell2010
default-extensions: AllowAmbiguousTypes
, DataKinds
, DeriveGeneric
, FlexibleContexts
, FlexibleInstances
, KindSignatures
, MultiParamTypeClasses
, OverloadedStrings
, ScopedTypeVariables
, TypeApplications
, TypeFamilies
, TypeOperators
, UndecidableInstances
executable web-template
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, web-template
, text
, mtl
, scotty
default-language: Haskell2010
executable web-template-servant
hs-source-dirs: app
main-is: ServantApp.hs
ghc-options: -threaded -rtsopts
build-depends: base
, aeson
, openapi3
, servant-openapi3
, servant-server
, text
, web-template
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/biocad/web-template