-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdump.cabal
60 lines (52 loc) · 1.91 KB
/
dump.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
-- Initial dump.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: dump
version: 0.3.0
synopsis: Dumps the names and values of expressions to ease debugging.
description: Can be used with "Debug.Trace", "Test.QuickCheck", or just
plain old "System.IO"'s "putStrLn".
.
See README.md and FEATURES.md for further details.
license: MIT
license-file: LICENSE
author: Milán Nagy
maintainer: dumplibhs.psssst@dfgh.net
category: Development, QuasiQuotes
build-type: Simple
extra-source-files: README.md, FEATURES.md, CHANGES.md
cabal-version: >=1.10
homepage: https://github.com/Wizek/dump
source-repository head
type: git
location: git://github.com/Wizek/dump.git
library
exposed-modules: Debug.Dump
other-modules: Internal.Utils, Internal.Parser
build-depends: base >=4 && <5
, template-haskell -any
, haskell-src-meta >=0.6.0.9
, interpolatedstring-perl6 >=0.8
, text >=1.2.0.2
, MissingH
ghc-options:
--ddump-splices
--funbox-strict-fields
hs-source-dirs: src
default-language: Haskell2010
default-extensions: QuasiQuotes
test-suite spec
type: exitcode-stdio-1.0
build-depends: base >=4 && <5
, template-haskell -any
, haskell-src-meta >=0.6.0.9
, interpolatedstring-perl6 >=0.8
, text >=1.2.0.2
, MissingH
, hspec >=0.2.0
, QuickCheck >=1.0
ghc-options:
--ddump-splices
hs-source-dirs: spec, src
main-is: Spec.hs
default-language: Haskell2010
default-extensions: QuasiQuotes