-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhoff.cabal
115 lines (104 loc) · 4.22 KB
/
hoff.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
name: hoff
version: 0.4.0
category: Development
synopsis: A gatekeeper for your commits
copyright: Copyright 2016 Ruud van Asseldonk
license: Apache-2.0
license-file: license
author: Ruud van Asseldonk
maintainer: [email protected]
build-type: Simple
extra-source-files: readme.md
cabal-version: >=1.10
library
default-language: Haskell2010
ghc-options: -Wall -Werror -fno-ignore-asserts
hs-source-dirs: src
exposed-modules: Configuration
, EventLoop
, Git
, Github
, GithubApi
, Logic
, Project
, Server
, WebInterface
build-depends: aeson >= 1.1 && < 1.2
, aeson-pretty >= 0.7 && < 0.9
, base >= 4.8 && < 4.10
, base16-bytestring >= 0.1 && < 0.2
, blaze-html >= 0.9 && < 0.10
, blaze-markup >= 0.8 && < 0.9
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.6
, cryptonite >= 0.23 && < 0.24
, directory >= 1.3 && < 1.4
, file-embed >= 0.0 && < 0.1
, filepath >= 1.4 && < 1.5
, free >= 4.12 && < 4.13
, http-types >= 0.9 && < 0.10
, github >= 0.16 && < 0.17
, monad-logger >= 0.3 && < 0.4
, process >= 1.2 && < 1.5
, process-extras >= 0.7 && < 0.8
, scotty >= 0.11 && < 0.12
, stm >= 2.4 && < 2.5
, text >= 1.2 && < 1.3
, text-format >= 0.3 && < 0.4
, wai >= 3.2 && < 3.3
, warp >= 3.2 && < 3.3
, warp-tls >= 3.2 && < 3.3
executable hoff
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: app
ghc-options: -Wall -Werror
build-depends: base >= 4.8 && < 4.10
, directory >= 1.3 && < 1.4
, hoff
, monad-logger >= 0.3 && < 0.4
test-suite spec
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: tests
ghc-options: -Wall -Werror
build-depends: aeson >= 1.1 && < 1.2
, base >= 4.8 && < 4.10
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.6
-- TODO: Use the new function that really deletes directories,
-- instead of rolling my own.
, directory >= 1.3 && < 1.4
, filepath >= 1.4 && < 1.5
, free >= 4.12 && < 4.13
, hoff
, hspec >= 2.4 && < 2.5
, hspec-core >= 2.4 && < 2.5
, text >= 1.2 && < 1.3
, uuid >= 1.3 && < 1.4
test-suite end-to-end
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: EndToEnd.hs
other-modules: EventLoopSpec, ServerSpec
hs-source-dirs: tests
ghc-options: -Wall -Werror -threaded -rtsopts -with-rtsopts=-N
build-depends: async >= 2.1 && < 2.2
, base >= 4.8 && < 4.10
, bytestring >= 0.10 && < 0.11
, cryptonite >= 0.23 && < 0.24
, filepath >= 1.4 && < 1.5
-- TODO: Use the new function that really deletes directories,
-- instead of rolling my own.
, directory >= 1.3 && < 1.4
, hoff
, http-conduit >= 2.2 && < 2.3
, hspec >= 2.4 && < 2.5
, hspec-core >= 2.4 && < 2.5
, http-types >= 0.9 && < 0.10
, monad-logger >= 0.3 && < 0.4
, random >= 1.1 && < 1.2
, stm >= 2.4 && < 2.5
, text >= 1.2 && < 1.3
, uuid >= 1.3 && < 1.4