]> git.immae.eu Git - github/fretlink/edi-parser.git/blob - specification/package.yaml
Release code as open source
[github/fretlink/edi-parser.git] / specification / package.yaml
1 name: edi-parser-specification
2 version: 20190607
3 synopsis: Support for subset of the Edifact specification
4 description: Please see README.md
5 category: Text
6 author: FretLink
7 maintainer: example@example.com
8 copyright: 2019 FretLink
9 github: fretlink/edi-parser
10
11 extra-source-files:
12 - README.md
13
14 dependencies:
15 - edi-parser-core
16
17 library:
18 source-dirs: src
19 ghc-options:
20 - -Wall
21 - -Werror
22 dependencies:
23 - base >=4.7 && <5
24
25 executables:
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
38 tests:
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