aboutsummaryrefslogtreecommitdiffhomepage
path: root/core/package.yaml
blob: 6d60877822e1f63473e5d17f2d9545cf01566f2b (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
name: edi-parser-core
version: 20190607
synopsis: Example parser for EDI files
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:
- text

library:
  source-dirs: src
  ghc-options:
  - -Wall
  - -Werror
  dependencies:
  - base >=4.7 && <5
  - data-default
  - formatting
  - mtl
  - parsec
  - scientific
  - time

tests:
  edi-parser-core-test:
    main: Spec.hs
    source-dirs: test
    ghc-options:
    - -threaded
    - -rtsopts
    - -with-rtsopts=-N
    - -Wall
    - -Werror
    dependencies:
    - base
    - edi-parser-core
    - parsec
    - HUnit
    - test-framework
    - test-framework-hunit