aboutsummaryrefslogtreecommitdiff
path: root/server/thermoprint-server.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'server/thermoprint-server.cabal')
-rw-r--r--server/thermoprint-server.cabal11
1 files changed, 9 insertions, 2 deletions
diff --git a/server/thermoprint-server.cabal b/server/thermoprint-server.cabal
index e90eb4f..bc3650b 100644
--- a/server/thermoprint-server.cabal
+++ b/server/thermoprint-server.cabal
@@ -2,7 +2,7 @@
2-- documentation, see http://haskell.org/cabal/users-guide/ 2-- documentation, see http://haskell.org/cabal/users-guide/
3 3
4name: thermoprint-server 4name: thermoprint-server
5version: 1.0.0 5version: 1.1.0
6synopsis: Server for thermoprint-spec 6synopsis: Server for thermoprint-spec
7-- description: 7-- description:
8homepage: http://dirty-haskell.org/tags/thermoprint.html 8homepage: http://dirty-haskell.org/tags/thermoprint.html
@@ -21,11 +21,13 @@ library
21 , Thermoprint.Server.Fork 21 , Thermoprint.Server.Fork
22 , Thermoprint.Server.Database 22 , Thermoprint.Server.Database
23 , Thermoprint.Server.API 23 , Thermoprint.Server.API
24 , Thermoprint.Server.Push
24 , Thermoprint.Server.Queue 25 , Thermoprint.Server.Queue
25 , Thermoprint.Server.Printer 26 , Thermoprint.Server.Printer
26 , Thermoprint.Server.Printer.Debug 27 , Thermoprint.Server.Printer.Debug
27 , Thermoprint.Server.Printer.Generic 28 , Thermoprint.Server.Printer.Generic
28 other-modules: Thermoprint.Server.Database.Instances 29 other-modules: Thermoprint.Server.Database.Instances
30 , Paths_thermoprint_server
29 -- other-extensions: 31 -- other-extensions:
30 build-depends: base >=4.8 && <5 32 build-depends: base >=4.8 && <5
31 , conduit >=1.2.6 && <2 33 , conduit >=1.2.6 && <2
@@ -42,6 +44,7 @@ library
42 , transformers >=0.3.0 && <1 44 , transformers >=0.3.0 && <1
43 , persistent >=2.2 && <3 45 , persistent >=2.2 && <3
44 , persistent-template >=2.1.4 && <3 46 , persistent-template >=2.1.4 && <3
47 , servant >=0.4.4 && <1
45 , servant-server >=0.4.4 && <1 48 , servant-server >=0.4.4 && <1
46 , stm >=2.4.4 && <3 49 , stm >=2.4.4 && <3
47 , text >=1.2.1 && <2 50 , text >=1.2.1 && <2
@@ -57,6 +60,10 @@ library
57 , binary >=0.7.5 && <1 60 , binary >=0.7.5 && <1
58 , QuickCheck >=2.8.1 && <3 61 , QuickCheck >=2.8.1 && <3
59 , quickcheck-instances >=0.3.11 && <4 62 , quickcheck-instances >=0.3.11 && <4
63 , websockets >=0.9.5 && <1
64 , wai-websockets >=3.0.0 && <4
65 , wai >=3.0.5 && <4
66 , network-uri >=2.6.0 && <3
60 hs-source-dirs: src 67 hs-source-dirs: src
61 default-language: Haskell2010 68 default-language: Haskell2010
62 69
@@ -65,7 +72,7 @@ Test-Suite tests
65 hs-source-dirs: test 72 hs-source-dirs: test
66 main-is: Spec.hs 73 main-is: Spec.hs
67 build-depends: base >=4.8.1 && <5 74 build-depends: base >=4.8.1 && <5
68 , thermoprint-server ==1.0.* 75 , thermoprint-server ==1.1.*
69 , thermoprint-client ==0.0.* 76 , thermoprint-client ==0.0.*
70 , thermoprint-spec -any 77 , thermoprint-spec -any
71 , hspec >=2.2.1 && <3 78 , hspec >=2.2.1 && <3