-
Notifications
You must be signed in to change notification settings - Fork 0
/
Yesod-Hunt.cabal
58 lines (47 loc) · 1.36 KB
/
Yesod-Hunt.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
name: yesod-hunt
version: 0.1
license: MIT
license-file: LICENSE
author:
copyright:
maintainer:
stability: experimental
category:
synopsis: A Yesod Plugin, Subsite to integrate search framework Holumbus within Yesod applications
cabal-version: >=1.8
build-type: Simple
-- tested-with: ghc-7.0.3
-- extra-source-files:
-- README
executable hunt-yesod-server
main-is: main.hs
other-modules:
hs-source-dirs: test
build-depends: base >= 4 && < 5
, aeson >= 0.6
, yesod >= 1.2
, text
, yesod-hunt
, shakespeare-js >= 1.2
library
build-depends: base >= 4 && < 5
, aeson >= 0.6
, yesod >= 1.2
, hunt-searchengine >= 0.1
, text
exposed-modules:
Yesod.Hunt.SubSite
Yesod.Hunt.Routes
Yesod.Hunt
hs-source-dirs: src
ghc-options: -Wall -funbox-strict-fields -fwarn-tabs
extensions: MultiParamTypeClasses
FlexibleContexts
FlexibleInstances
OverloadedStrings
TypeFamilies
ConstraintKinds
KindSignatures
TemplateHaskell
QuasiQuotes
RankNTypes