aboutsummaryrefslogtreecommitdiff
path: root/servant/servant.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'servant/servant.cabal')
-rw-r--r--servant/servant.cabal31
1 files changed, 28 insertions, 3 deletions
diff --git a/servant/servant.cabal b/servant/servant.cabal
index b509dbc..b877196 100644
--- a/servant/servant.cabal
+++ b/servant/servant.cabal
@@ -16,11 +16,36 @@ build-type: Simple
16-- extra-source-files: 16-- extra-source-files:
17cabal-version: >=1.10 17cabal-version: >=1.10
18 18
19library
20 exposed-modules: Thermoprint.Api
21 hs-source-dirs: api
22 default-language: Haskell2010
23 other-extensions: DataKinds
24 , TypeOperators
25 , DeriveGeneric
26 build-depends: base >=4.8 && <4.9
27 , thermoprint
28 , aeson >=0.9.0 && <0.10
29 , servant >=0.4.4 && <0.5
30 , text >=1.2.1 && <4.5
31 , bytestring >=0.10.6 && <0.11
32
19executable thermoprint 33executable thermoprint
20 main-is: Main.hs 34 main-is: Main.hs
35 hs-source-dirs: src
36 default-language: Haskell2010
21 -- other-modules: 37 -- other-modules:
22 -- other-extensions: 38 other-extensions: RecordWildCards
39 , OverloadedStrings
23 build-depends: base >=4.8 && <4.9 40 build-depends: base >=4.8 && <4.9
24 , thermoprint 41 , thermoprint
25 hs-source-dirs: src 42 , thermoprint-servant
26 default-language: Haskell2010 \ No newline at end of file 43 , aeson >=0.9.0 && <0.10
44 , wai >=3.0.3 && <3.1
45 , servant-server >=0.4.4 && <0.5
46 , warp >=3.1.3 && <3.2
47 , text >=1.2.1 && <1.3
48 , bytestring >=0.10.6 && <0.11
49 , either >=4.4.1 && <4.5
50 , optparse-applicative >=0.11.0 && <0.12
51 , transformers >=0.4.2 && <0.5 \ No newline at end of file