-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathoffset.cabal
122 lines (120 loc) · 3.98 KB
/
offset.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: offset
version: 0.4.0
synopsis: A library that communicates with wordpress over its api.
-- description:
homepage: https://github.com/positiondev/offset
license: BSD3
license-file: LICENSE
author: Daniel Patterson <[email protected]>, Matt Raibert <[email protected]>, Libby Horacek <[email protected]>
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
library
exposed-modules:
Web.Offset
, Web.Offset.Feed
, Web.Offset.Internal
, Web.Offset.Types
, Web.Offset.Field
, Web.Offset.Init
, Web.Offset.Splices
, Web.Offset.Queries
, Web.Offset.HTTP
, Web.Offset.Cache
, Web.Offset.Cache.Types
, Web.Offset.Cache.Redis
, Web.Offset.Posts
, Web.Offset.Utils
, Web.Offset.Date
, Web.Offset.Link
-- other-extensions:
build-depends: aeson
, base < 5
, blaze-builder
, case-insensitive
, data-default
, hedis
, lens
, text
, bytestring
, wreq >= 0.5
, configurator
, time
, xmlhtml >= 0.2.3.2
, async
, mtl
, either
, unordered-containers
, containers
, vector
, attoparsec
, larceny
, scientific
, atom-basic
, xml
, http-types
, rss
, network-uri
hs-source-dirs: src
default-language: Haskell2010
test-Suite test-offset
type: exitcode-stdio-1.0
hs-source-dirs: spec, src
main-is: Main.hs
other-modules: Misc
, Common
, Web.Offset
, Web.Offset.Feed
, Web.Offset.Cache
, Web.Offset.Cache.Redis
, Web.Offset.Cache.Types
, Web.Offset.Field
, Web.Offset.HTTP
, Web.Offset.Init
, Web.Offset.Internal
, Web.Offset.Posts
, Web.Offset.Queries
, Web.Offset.Splices
, Web.Offset.Types
, Web.Offset.Utils
, Web.Offset.Date
, Web.Offset.Link
build-depends: base
, aeson
, async
, attoparsec
, base < 5
, blaze-builder
, bytestring
, case-insensitive
, configurator
, containers
, data-default
, either
, fn-monadic
, hedis
, directory
, dotenv
, hspec-expectations-pretty-diff
, wai
, hspec >= 2
, hspec-core
, larceny
, lens
, mtl
, text
, time
, unordered-containers
, vector
, wreq >= 0.3
, xmlhtml >= 0.2.3.2
, scientific
, atom-basic
, xml
, http-types
, rss
, network-uri
default-language: Haskell2010