-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAlacrity.cabal
52 lines (50 loc) · 2 KB
/
Alacrity.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
-- Initial Alacrity.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: Alacrity
version: 0.1.0.0
-- synopsis:
-- description:
license: GPL-3
license-file: LICENSE
author: Ron Watkins
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable alacrity
main-is: Main.hs
extensions: OverloadedStrings
, BangPatterns
, DeriveGeneric
, TemplateHaskell
ghc-options: -threaded -O2 -funfolding-use-threshold=16 -fexcess-precision -optc-O3 -optc-ffast-math -rtsopts -fno-state-hack -fstatic-argument-transformation -funbox-strict-fields -feager-blackholing -fno-strictness
-- other-modules:
-- other-extensions:
build-depends: base >=4.7
, stm >= 2.4.0
, transformers >= 0.3.0
, websockets == 0.9.5.0
, text >= 1.1.0
, unordered-containers >= 0.2.6
, bytestring >= 0.10.4.0
, base64-bytestring >= 1.0.0.1
, network >= 2.4.2
, lens >= 4.13
, aeson >= 0.7.0
, directory >= 1.2.5.1
, filepath >= 1.3.0.2
, scotty >= 0.9.0
, shake >= 0.15.5
, wai == 3.0.3.*
, wai-logger >= 2.2.0
, wai-extra >= 3.0.3
, time >= 1.4.2
, http-types >= 0.8.6
, unix >= 2.7.0.1
, safe >= 0.3.9
, filelock >= 0.1.0.1
, stringsearch >= 0.3.6.6
hs-source-dirs: src, conf
default-language: Haskell2010