-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.yaml
64 lines (58 loc) · 1.28 KB
/
package.yaml
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
56
57
58
59
60
61
62
63
64
name: toml-reader
version: 0.2.1.0
category: TOML, Text, Configuration
synopsis: TOML format parser compliant with v1.0.0.
description: TOML format parser compliant with v1.0.0. See README.md for more details.
license: BSD3
license-file: LICENSE.md
author: Brandon Chinn <brandonchinn178@gmail.com>
maintainer: Brandon Chinn <brandonchinn178@gmail.com>
extra-source-files:
- README.md
- CHANGELOG.md
- test/**/*.golden
github: brandonchinn178/toml-reader
ghc-options:
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wnoncanonical-monad-instances
- -Wunused-packages
library:
source-dirs: src
dependencies:
- base >= 4.15 && < 5
- containers < 0.8
- megaparsec < 10
- parser-combinators < 1.4
- text < 3
- time < 1.15
tests:
toml-reader-tests:
main: Main.hs
source-dirs: test/tasty
dependencies:
- base
- containers
- tasty
- tasty-golden
- tasty-hunit
- text
- time
- toml-reader
parser-validator:
main: ValidateParser.hs
source-dirs: test/toml-test
dependencies:
- aeson
- base
- bytestring
- containers
- directory
- process
- text
- time
- toml-reader
- unordered-containers
- vector