aboutsummaryrefslogtreecommitdiff
path: root/client/thermoprint-client.cabal
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2016-02-17 23:46:48 +0000
committerGregor Kleen <gkleen@yggdrasil.li>2016-02-17 23:46:48 +0000
commit072d7ad172d114121ae0d50f8c7841ace9699965 (patch)
treece42a9c3fc4210b84e77f5f50a109339d4ba3772 /client/thermoprint-client.cabal
parent39ae58ddbe3f59f99e4ce2e3d68cfdbccaaec202 (diff)
downloadthermoprint-072d7ad172d114121ae0d50f8c7841ace9699965.tar
thermoprint-072d7ad172d114121ae0d50f8c7841ace9699965.tar.gz
thermoprint-072d7ad172d114121ae0d50f8c7841ace9699965.tar.bz2
thermoprint-072d7ad172d114121ae0d50f8c7841ace9699965.tar.xz
thermoprint-072d7ad172d114121ae0d50f8c7841ace9699965.zip
Started work on client library
Diffstat (limited to 'client/thermoprint-client.cabal')
-rw-r--r--client/thermoprint-client.cabal32
1 files changed, 32 insertions, 0 deletions
diff --git a/client/thermoprint-client.cabal b/client/thermoprint-client.cabal
new file mode 100644
index 0000000..39e2622
--- /dev/null
+++ b/client/thermoprint-client.cabal
@@ -0,0 +1,32 @@
1-- Initial thermoprint-server.cabal generated by cabal init. For further
2-- documentation, see http://haskell.org/cabal/users-guide/
3
4name: thermoprint-client
5version: 0.0.0
6synopsis: Client for thermoprint-spec
7-- description:
8homepage: http://dirty-haskell.org/tags/thermoprint.html
9license: PublicDomain
10license-file: LICENSE
11author: Gregor Kleen
12maintainer: aethoago@141.li
13-- copyright:
14category: Web
15build-type: Simple
16-- extra-source-files:
17cabal-version: >=1.10
18
19library
20 exposed-modules: Thermoprint.Client
21 -- other-modules:
22 -- other-extensions:
23 build-depends: base >=4.8 && <5
24 , thermoprint-spec ==3.0.*
25 , servant >=0.4.4 && <1
26 , servant-client >=0.4.4 && <1
27 , servant-server >=0.4.4 && <1
28 , containers >=0.5.6 && <1
29 , either >=4.4.1 && <5
30 , time >=1.5.0 && <2
31 hs-source-dirs: src
32 default-language: Haskell2010