forked from brendanhay/gogol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gogol-core.cabal
93 lines (80 loc) · 2.75 KB
/
gogol-core.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: gogol-core
version: 0.3.0
synopsis: Core data types and functionality for Gogol libraries.
homepage: https://github.com/brendanhay/gogol
bug-reports: https://github.com/brendanhay/gogol/issues
license: OtherLicense
license-file: LICENSE
author: Brendan Hay
maintainer: Brendan Hay <[email protected]>
copyright: Copyright (c) 2015-2016 Brendan Hay
category: Network, Google, Cloud
build-type: Simple
extra-source-files: README.md
cabal-version: >= 1.10
description:
Core data types, functionality and serialisation primitives for
Gogol related Google Services SDKs.
.
The external interface of this library is stable with respect to the
downstream Gogol libraries, only, and as such is not suitable
for use in non-Gogol projects.
source-repository head
type: git
location: git://github.com/brendanhay/gogol.git
flag old-locale
description: Use old-locale and time < 1.5
default: False
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules:
Network.Google.Data.Bytes
, Network.Google.Data.JSON
, Network.Google.Data.Numeric
, Network.Google.Data.Time
, Network.Google.Prelude
, Network.Google.Types
build-depends:
aeson >= 0.8
, attoparsec >= 0.11.3
, base >= 4.7 && < 5
, bifunctors >= 0.1
, bytestring >= 0.9
, case-insensitive >= 1.2
, conduit >= 1.1
, dlist >= 0.7
, exceptions >= 0.6
, hashable >= 1.2
, http-api-data >= 0.2
, http-client >= 0.5 && < 1
, http-media >= 0.6
, http-types >= 0.8.6
, lens >= 4.4
, resourcet >= 1.1
, scientific >= 0.3
, servant >= 0.4.4
, text >= 1.1
, unordered-containers >= 0.2.5
if !impl(ghc>=7.9)
build-depends:
nats >= 0.1.3
if flag(old-locale)
build-depends:
old-locale == 1.*
, time >= 1.2 && < 1.5
else
build-depends:
time >= 1.5
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
ghc-options: -Wall -threaded
other-modules:
build-depends:
gogol-core
, base
, tasty