forked from nakaji-dayo/yesod-job-queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yesod-job-queue.cabal
112 lines (103 loc) · 3.59 KB
/
yesod-job-queue.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
name: yesod-job-queue
version: 0.3.0.4
synopsis: Background jobs library for Yesod.
description:
Background jobs library for Yesod
.
* It contains management API and web interface.
* Queue backend is Redis.
* Support cron scheduler
.
Usage and screen shot are available in README.md
homepage: https://github.com/nakaji-dayo/yesod-job-queue#readme
license: BSD3
license-file: LICENSE
author: Daishi Nakajima
maintainer: nakaji.dayo@gmail.com
copyright: 2016 Daishi Nakajima
category: Web
build-type: Custom
extra-source-files: README.md
app/dist/app.bundle.js
doc/yesod-job-queue-ss.png
cabal-version: >=1.10
flag example
description: Build the example application
default: False
library
exposed-modules: Yesod.JobQueue
, Yesod.JobQueue.GenericConstr
, Yesod.JobQueue.Routes
, Yesod.JobQueue.Scheduler
, Yesod.JobQueue.Types
default-extensions: FlexibleContexts
, FlexibleInstances
, FunctionalDependencies
, KindSignatures
, MultiParamTypeClasses
, OverloadedStrings
, ScopedTypeVariables
, TypeFamilies
, TypeOperators
, TypeSynonymInstances
, ViewPatterns
build-depends: base >= 4.7 && < 5
, aeson >= 1.1
, api-field-json-th >= 0.1
, bytestring
, cron >= 0.5.0 && < 0.6
, file-embed
, hedis
, lens
, monad-logger
, stm
, text
, time
, transformers
, unliftio-core
, uuid
, yesod >= 1.4 && < 1.5
, yesod-core
, yesod-persistent >= 1.4 && < 1.5
ghc-options: -Wall -fwarn-tabs
default-language: Haskell2010
executable yesod-job-queue-example
if flag(example)
buildable: True
else
buildable: False
hs-source-dirs: example
main-is: Main.hs
default-extensions: TemplateHaskell
, QuasiQuotes
, OverloadedStrings
, TypeFamilies
, GADTs
, MultiParamTypeClasses
, EmptyDataDecls
, GeneralizedNewtypeDeriving
, DeriveGeneric
-- other-modules:
ghc-options: -Wall -fwarn-tabs
build-depends: base >= 4.7 && < 5
, yesod
, yesod-core
, yesod-job-queue
, persistent-sqlite
, resourcet
, monad-logger
, classy-prelude-yesod
, hedis
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
test-suite yesod-job-queue-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, yesod-job-queue
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/nakaji-dayo/yesod-job-queue