This repository was archived by the owner on Jun 8, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathupcase-diff-parser.cabal
More file actions
49 lines (46 loc) · 1.69 KB
/
upcase-diff-parser.cabal
File metadata and controls
49 lines (46 loc) · 1.69 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
name: upcase-diff-parser
version: 0.0.0
author: Joe Ferris <jferris@thoughtbot.com>
maintainer: Joe Ferris <jferris@thoughtbot.com>
cabal-version: >= 1.10
build-type: Simple
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Upcase.DiffParser
, Upcase.DiffParser.App
other-modules: Data.Aeson.TH.Options
, Text.Diff.Parse.Instances
build-depends: base >= 4 && < 5
, diff-parse >= 0.2.1 && < 0.3
, aeson >= 0.8 && < 0.9
, yesod-core >= 1.4 && < 1.5
, text > 0.10 && < 1.3
, conduit
, conduit-extra
, http-types
default-extensions: QuasiQuotes
TypeFamilies
TemplateHaskell
MultiParamTypeClasses
OverloadedStrings
executable upcase-diff-parser
default-language: Haskell2010
main-is: main.hs
ghc-options: -Wall
build-depends: base
, upcase-diff-parser
, warp >= 3.0 && < 3.1
test-suite spec
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
ghc-options: -Wall
main-is: Spec.hs
build-depends: base
, upcase-diff-parser
, hspec
, hspec-wai
, hspec-wai-json
, bytestring