-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoffset.cabal
More file actions
114 lines (112 loc) · 3.83 KB
/
offset.cabal
File metadata and controls
114 lines (112 loc) · 3.83 KB
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
name: offset
version: 0.1.1.2
synopsis: A library that communicates with wordpress over its api.
-- description:
homepage: https://github.com/dbp/offset
license: BSD3
license-file: LICENSE
author: Daniel Patterson <dbp@positiondev.com>, Matt Raibert <mattraibert@positiondev.com>, Libby Horacek <libby@positiondev.com>
maintainer: dbp@positiondev.com
-- copyright:
category: Web
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
library
exposed-modules:
Web.Offset
, Web.Offset.Internal
, Web.Offset.Types
, Web.Offset.Field
, Web.Offset.Init
, Web.Offset.Splices
, Web.Offset.Splices.Helpers
, Web.Offset.HTTP
, Web.Offset.Cache
, Web.Offset.Cache.Types
, Web.Offset.Cache.Redis
, Web.Offset.Utils
, Web.Offset.WordPress.Field
, Web.Offset.WordPress.Posts
, Web.Offset.WordPress.Queries
, Web.Offset.WordPress.Splices
, Web.Offset.WordPress.Types
-- other-extensions:
build-depends: aeson
, base < 4.9
, blaze-builder
, data-default
, hedis
, heist >= 0.14
, map-syntax
, lens
, text
, bytestring
, wreq >= 0.3
, configurator
, time
, xmlhtml >= 0.2.3.2
, async
, mtl
, either
, unordered-containers
, containers
, vector
, attoparsec
, larceny
, scientific
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.Cache
, Web.Offset.Cache.Redis
, Web.Offset.Cache.Types
, Web.Offset.Field
, Web.Offset.HTTP
, Web.Offset.Init
, Web.Offset.Internal
, Web.Offset.Splices
, Web.Offset.Splices.Helpers
, Web.Offset.Types
, Web.Offset.Utils
, Web.Offset.WordPress.Field
, Web.Offset.WordPress.Posts
, Web.Offset.WordPress.Queries
, Web.Offset.WordPress.Splices
, Web.Offset.WordPress.Types
build-depends: base
, aeson
, async
, attoparsec
, base < 4.9
, blaze-builder
, bytestring
, configurator
, containers
, data-default
, either
, fn
, hedis
, directory
, dotenv
, wai
, hspec >= 2
, hspec-core
, larceny
, lens
, map-syntax
, mtl
, text
, time
, unordered-containers
, vector
, wreq >= 0.3
, xmlhtml >= 0.2.3.2
, scientific
default-language: Haskell2010