-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathauto-back-end.cabal
More file actions
47 lines (46 loc) · 2.01 KB
/
auto-back-end.cabal
File metadata and controls
47 lines (46 loc) · 2.01 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
name: auto-back-end
version: 0.1.0.0
synopsis: Demo of an automotive back end using Servant.
license: BSD3
license-file: LICENSE
author: Jason Stolaruk
maintainer: jason@detroitlabs.com
copyright: Copyright (c) 2016, Jason Stolaruk and Detroit Labs LLC
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable auto-back-end
main-is: Main.hs
other-modules: Client
, InitData
, Server
, Types
other-extensions: DataKinds
, DeriveGeneric
, FlexibleInstances
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, OverloadedStrings
, TypeOperators
build-depends: base >=4.8 && <4.9
, bytestring >=0.10 && <0.11
, aeson >=0.10 && <0.11
, containers >=0.5 && <0.6
, either >=4.4 && <5.0
, http-types >=0.9 && <0.10
, pandoc >=1.15 && <2.0
, QuickCheck >=2.8 && <3.0
, servant >=0.4 && <0.5
, servant-client >=0.4 && <0.5
, servant-docs >=0.4 && <0.5
, servant-mock ==0.4.*
, servant-pandoc >=0.4 && <0.5
, servant-server >=0.4 && <0.5
, text >=1.2 && <2.0
, transformers >=0.4 && <0.5
, wai >=3.0 && <4.0
, warp >=3.1 && <4.0
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N -Wall -Werror