-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.yaml
40 lines (40 loc) · 895 Bytes
/
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
name: th-format
version: '0.1.3.0'
synopsis: Template Haskell based support for format strings
description: This package implements a Template Haskell quasi quoter for
format strings.
category: Data
author: Moritz Clasmeier
maintainer: [email protected]
copyright: 2017-2019 Moritz Clasmeier
license: BSD3
github: mtesseract/th-format
extra-source-files:
- README.md
library:
source-dirs: src
exposed-modules:
- Data.Format
ghc-options:
- -Wall
dependencies:
- base >=4.7 && <5
- Earley >= 0.12.1.0 && < 0.14
- template-haskell >= 2.12.0.0 && < 2.15
- text >= 1.2.3.0 && < 1.3
- haskell-src-meta >= 0.8.0.2 && < 0.9
tests:
th-format-test:
main: Tests.hs
source-dirs: test
ghc-options:
- -Wall
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- th-format
- tasty
- tasty-hunit
- text