-
Notifications
You must be signed in to change notification settings - Fork 4
/
rawr.cabal
94 lines (87 loc) · 2.57 KB
/
rawr.cabal
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
-- This file has been generated from package.yaml by hpack version 0.14.1.
--
-- see: https://github.com/sol/hpack
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.
category: Records
homepage: https://github.com/pkmx/rawr
bug-reports: https://github.com/pkmx/rawr/issues
author: PkmX
maintainer: pkmx.tw@gmail.com
copyright: 2016 PkmX
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/pkmx/rawr
library
hs-source-dirs:
src
ghc-options: -Wall -funfolding-use-threshold=20
build-depends:
base == 4.9.*
, deepseq == 1.4.*
, ghc-prim == 0.5.*
exposed-modules:
Data.Rawr
other-modules:
Paths_rawr
default-language: Haskell2010
test-suite datasize
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
tests/datasize
ghc-options: -Wall
build-depends:
base == 4.9.*
, deepseq == 1.4.*
, rawr
, ghc-datasize == 0.2.*
, tasty == 0.11.*
, tasty-hunit == 0.9.*
default-language: Haskell2010
test-suite doctest
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
tests/doctest
ghc-options: -Wall
build-depends:
base == 4.9.*
, deepseq == 1.4.*
, doctest == 0.11.*
, lens == 4.14.*
default-language: Haskell2010
benchmark perf
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
benchmarks/perf
ghc-options: -Wall -funfolding-use-threshold=20
build-depends:
base == 4.9.*
, deepseq == 1.4.*
, rawr
, criterion == 1.1.*
default-language: Haskell2010