]> git.immae.eu Git - github/fretlink/edi-parser.git/blame - specification/package.yaml
Release code as open source
[github/fretlink/edi-parser.git] / specification / package.yaml
CommitLineData
a9d77a20
FM
1name: edi-parser-specification
2version: 20190607
3synopsis: Support for subset of the Edifact specification
4description: Please see README.md
5category: Text
6author: FretLink
7maintainer: example@example.com
8copyright: 2019 FretLink
9github: fretlink/edi-parser
10
11extra-source-files:
12- README.md
13
14dependencies:
15- edi-parser-core
16
17library:
18 source-dirs: src
19 ghc-options:
20 - -Wall
21 - -Werror
22 dependencies:
23 - base >=4.7 && <5
24
25executables:
26 edi-parser-specification:
27 main: Main.hs
28 source-dirs: app
29 ghc-options:
30 - -threaded
31 - -rtsopts
32 - -with-rtsopts=-N
33 dependencies:
34 - base
35 - edi-parser-specification
36 - text
37
38tests:
39 edi-parser-specification-test:
40 main: Spec.hs
41 source-dirs: test
42 ghc-options:
43 - -threaded
44 - -rtsopts
45 - -with-rtsopts=-N
46 - -Wall
47 - -Werror
48 dependencies:
49 - base
50 - edi-parser-specification
51 - parsec
52 - HUnit
53 - test-framework
54 - test-framework-hunit
55 - text