forked from positiondev/offset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
offset.cabal
85 lines (83 loc) · 2.86 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
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 <[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:
Snap.Snaplet.Wordpress
, Snap.Snaplet.Wordpress.Internal
, Snap.Snaplet.Wordpress.Types
, Snap.Snaplet.Wordpress.Field
, Snap.Snaplet.Wordpress.Init
, Snap.Snaplet.Wordpress.Splices
, Snap.Snaplet.Wordpress.Queries
, Snap.Snaplet.Wordpress.HTTP
, Snap.Snaplet.Wordpress.Cache
, Snap.Snaplet.Wordpress.Cache.Types
, Snap.Snaplet.Wordpress.Cache.Redis
, Snap.Snaplet.Wordpress.Posts
, Snap.Snaplet.Wordpress.Utils
-- other-extensions:
build-depends: aeson
, base < 4.9
, blaze-builder
, data-default
, hedis
, heist >= 0.14
, map-syntax
, lens
, snap
, snap-core
, snaplet-redis
, text
, bytestring
, wreq >= 0.3
, configurator
, time
, xmlhtml >= 0.2.3.2
, async
, hspec >= 2
, hspec-snap
, mtl
, either
, unordered-containers
, containers
, vector
, attoparsec
hs-source-dirs: src
default-language: Haskell2010
Test-Suite test-offset
type: exitcode-stdio-1.0
hs-source-dirs: spec
main-is: Main.hs
other-modules: Misc
build-depends: base
, heist
, hspec-snap
, hspec >= 2
, hspec-core
, snap
, offset
, blaze-builder
, snaplet-redis
, lens
, data-default
, text
, xmlhtml
, mtl
, either
, unordered-containers
, aeson
, containers
, hedis
default-language: Haskell2010