-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.yaml
71 lines (57 loc) · 1.74 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
65
66
67
68
69
70
71
name: rawr
version: 0.0.0.1
synopsis: Anonymous extensible records
description: >
This library provides anonymous extensible records using GHC 8.0 features, with the following goals/features:
* The syntax should be very close to that of Haskell's record system.
* The library should be simple to use and requires no extra boilerplate to setup.
* There should be minimal runtime overhead and memory footprint.
* The library does not require @TemplateHaskell@ to use.
* It should produce good error messages.
* Minimal dependencies. Currently, it only depends on packages that comes with GHC.
See @<https://hackage.haskell.org/package/rawr/docs/Data-Rawr.html Data.Rawr>@ for a tutorial of this library.
homepage: https://github.com/pkmx/rawr
license: BSD3
author: PkmX
maintainer: [email protected]
copyright: 2016 PkmX
category: Records
github: pkmx/rawr
ghc-options: -Wall
dependencies:
- base == 4.9.*
- deepseq == 1.4.*
library:
ghc-options: -funfolding-use-threshold=20
source-dirs: src
exposed-modules: Data.Rawr
dependencies:
- ghc-prim == 0.5.*
tests:
doctest:
main: Main.hs
source-dirs:
- tests/doctest
dependencies:
- doctest == 0.11.*
- lens == 4.14.*
datasize:
main: Main.hs
source-dirs:
- tests/datasize
dependencies:
- rawr
- ghc-datasize == 0.2.*
- tasty == 0.11.*
- tasty-hunit == 0.9.*
benchmarks:
perf:
main: Main.hs
source-dirs:
- benchmarks/perf
dependencies:
- rawr
- criterion == 1.1.*
ghc-options: -funfolding-use-threshold=20
extra-source-files:
- README.md