-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdiamond.cabal
46 lines (43 loc) · 1.47 KB
/
diamond.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
name: diamond
version: 0.0.0.1
synopsis: Confluence REST API using Servant
-- description:
license: BSD3
license-file: LICENSE
author: Jost Berthold
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.20
library
exposed-modules: Web.Diamond
Web.Diamond.API
Web.Diamond.Types
-- other-modules:
-- other-extensions:
build-depends: base >=4.9 && < 5,
servant >= 0.7,
servant-client >= 0.7,
containers >= 0.5,
transformers >= 0.5,
aeson >= 0.11,
http-client >= 0.4,
http-client-tls >= 0.2,
http-api-data >= 0.2,
text >= 1.2,
bytestring >= 0.10
hs-source-dirs: src
default-language: Haskell2010
test-suite json-test
type: detailed-0.9
test-module: TestJson
other-modules: Web.Diamond.Types
default-language: Haskell2010
hs-source-dirs: test, src
build-depends: diamond, base, aeson, bytestring, filepath, text
, http-api-data
, cabal-test-quickcheck
, QuickCheck >= 2.8
, Cabal >= 1.20