-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathhastatic.cabal
More file actions
43 lines (39 loc) · 1.29 KB
/
Copy pathhastatic.cabal
File metadata and controls
43 lines (39 loc) · 1.29 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
cabal-version: 3.0
name: hastatic
version: 0.10.0
license: BSD-3-Clause
license-file: LICENSE
author: Abhinav Sarkar
maintainer: abhinav@abhinavsarkar.net
copyright: 2018-2026 Abhinav Sarkar
category: Web
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
description:
Please see the README on GitHub at <https://github.com/abhin4v/hastatic#readme>
flag enableTLS
description: Enable support for TLS/HTTPS via warp-tls
default: True
manual: True
executable hastatic
main-is: Main.hs
other-modules: Paths_hastatic
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -O2
default-extensions: CPP
build-depends:
, base >=4.14 && <5
, bytestring >=0.10 && <0.13
, directory >=1.3 && <1.4
, http-types >=0.12 && <0.13
, text >=1.2 && <2.2
, unordered-containers >=0.2 && <0.3
, wai >=3.2 && <3.3
, wai-middleware-static >=0.9 && <0.10
, warp >=3.3 && <3.5
if flag(enabletls)
cpp-options: -DENABLETLS
build-depends: warp-tls >=3.3 && <3.5