blob: 361f977e1ed53de38c85905883bad8cc25ae5e33 (
plain) (
blame)
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
|
name: edi-parser-specification
version: 20190607
synopsis: Support for subset of the Edifact specification
description: Please see README.md
category: Text
author: FretLink
maintainer: example@example.com
copyright: 2019 FretLink
github: fretlink/edi-parser
extra-source-files:
- README.md
dependencies:
- edi-parser-core
library:
source-dirs: src
ghc-options:
- -Wall
- -Werror
dependencies:
- base >=4.7 && <5
executables:
edi-parser-specification:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- edi-parser-specification
- text
tests:
edi-parser-specification-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Werror
dependencies:
- base
- edi-parser-specification
- parsec
- HUnit
- test-framework
- test-framework-hunit
- text
|