-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheredocs.cabal
45 lines (42 loc) · 1.46 KB
/
heredocs.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
-- Initial heredoc.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: heredocs
version: 0.2.1.1
synopsis: Heredocument on Haskell
description: A heredocument library supports shakespeare-like syntax.
homepage: http://github.com/cutsea110/heredoc.git
license: BSD3
license-file: LICENSE
author: cutsea110
maintainer: [email protected]
-- copyright:
category: Text
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules:
Text.Heredoc
-- other-modules:
other-extensions:
TemplateHaskell
QuasiQuotes
build-depends: base >=4.12
, bytestring >= 0.10.6.0
, doctest >= 0.11.0
, parsec >=3.1.9
, template-haskell >=2.10.0.0
, text >= 1.2.2.1
hs-source-dirs: src
default-language: Haskell2010
test-suite doctest
type: exitcode-stdio-1.0
ghc-options: -threaded
main-is: doctests.hs
build-depends: base >=4.12
, bytestring >= 0.10.6.0
, doctest >= 0.11.0
, heredocs
, text >= 1.2.2.1
hs-source-dirs: test
default-language: Haskell2010