-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdiff-parse.cabal
42 lines (39 loc) · 1.38 KB
/
diff-parse.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
Name: diff-parse
Version: 0.2.1
Author: Gabe Mulley <[email protected]>
Maintainer: Gabe Mulley <[email protected]>
Category: Parsing
License: AGPL-3
License-File: LICENSE
Synopsis: A parser for diff file formats
Description: Parse output produced by git diff.
Cabal-Version: >= 1.18
Build-Type: Simple
Extra-Source-Files: changelog
Library
Default-Language: Haskell2010
HS-Source-Dirs: src
GHC-Options: -Wall
Exposed-Modules: Text.Diff.Parse
, Text.Diff.Parse.Types
Other-Modules: Text.Diff.Parse.Internal
Build-Depends: base >= 4 && < 5
, text
, attoparsec >= 0.11
Other-Extensions: OverloadedStrings
Test-Suite spec
Type: exitcode-stdio-1.0
Default-Language: Haskell2010
Hs-Source-Dirs: src
, test
Ghc-Options: -Wall
Main-Is: Spec.hs
Build-Depends: base >= 4 && < 5
, diff-parse
, attoparsec
, text
, hspec == 2.4.*
Other-Extensions: OverloadedStrings
Source-Repository head
Type: git
Location: https://github.com/mulby/diff-parse.git