forked from brendanhay/gogol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gogol-core.cabal
75 lines (70 loc) · 2.23 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
cabal-version: 2.2
name: gogol-core
version: 0.5.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: MPL-2.0
license-file: LICENSE
author: Brendan Hay
maintainer: Brendan Hay <[email protected]>
copyright: Copyright (c) 2015-2022 Brendan Hay
category: Google
build-type: Simple
extra-source-files: README.md
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
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options:
-Wall -fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates -funbox-strict-fields
-fwarn-unused-packages
exposed-modules:
Gogol.Data.Base64
Gogol.Data.JSON
Gogol.Data.Time
Gogol.Prelude
Gogol.Types
build-depends:
, aeson >=0.8
, attoparsec >=0.11.3
, base >=4.12 && <5
, base64 >=0.4
, bytestring >=0.9
, case-insensitive >=1.2
, conduit >=1.3
, 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.14.1
, text >=1.1
, time >=1.5
, unordered-containers >=0.2.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:
, base
, gogol-core
, tasty