]> Git — Sourcephile - haskell/symantic-document.git/blob - symantic-document.cabal
remove flushlinePlain at the end of list items
[haskell/symantic-document.git] / symantic-document.cabal
1 name: symantic-document
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 1.5.1.20191028
6 category: Text
7 synopsis: Document symantics.
8 description: Symantics for generating documents.
9 extra-doc-files:
10 license: GPL-3
11 license-file: COPYING
12 stability: experimental
13 author: Julien Moutinho <julm+symantic@autogeree.net>
14 maintainer: Julien Moutinho <julm+symantic@autogeree.net>
15 bug-reports: Julien Moutinho <julm+symantic@autogeree.net>
16 -- homepage:
17
18 build-type: Simple
19 cabal-version: 1.24
20 tested-with: GHC==8.6.4
21 extra-source-files:
22 stack.yaml
23 extra-tmp-files:
24
25 Source-Repository head
26 location: git://git.autogeree.net/symantic
27 type: git
28
29 Library
30 exposed-modules:
31 Symantic.Document
32 Symantic.Document.API
33 Symantic.Document.Plain
34 default-language: Haskell2010
35 default-extensions:
36 DataKinds
37 DefaultSignatures
38 FlexibleContexts
39 FlexibleInstances
40 LambdaCase
41 MultiParamTypeClasses
42 NamedFieldPuns
43 NoImplicitPrelude
44 OverloadedStrings
45 RecordWildCards
46 ScopedTypeVariables
47 StandaloneDeriving
48 TupleSections
49 TypeApplications
50 TypeFamilies
51 TypeOperators
52 ghc-options:
53 -Wall
54 -Wincomplete-uni-patterns
55 -Wincomplete-record-updates
56 -fno-warn-tabs
57 -fhide-source-paths
58 build-depends:
59 ansi-terminal >= 0.7
60 , base >= 4.6 && < 5
61 , text >= 1.2
62 , transformers >= 0.5
63
64 Test-Suite symantic-document-test
65 type: exitcode-stdio-1.0
66 hs-source-dirs: test
67 main-is: Main.hs
68 other-modules:
69 HUnit
70 default-language: Haskell2010
71 default-extensions:
72 DataKinds
73 FlexibleContexts
74 FlexibleInstances
75 LambdaCase
76 MultiParamTypeClasses
77 NoImplicitPrelude
78 NoMonomorphismRestriction
79 OverloadedStrings
80 RecordWildCards
81 ScopedTypeVariables
82 TupleSections
83 TypeApplications
84 TypeFamilies
85 TypeOperators
86 ghc-options:
87 -Wall
88 -Wincomplete-uni-patterns
89 -Wincomplete-record-updates
90 -fno-warn-tabs
91 -fhide-source-paths
92 -fprint-explicit-kinds
93 -- -O0
94 -- -fmax-simplifier-iterations=0
95 -- -dshow-passes
96 build-depends:
97 symantic-document
98 , base >= 4.6 && < 5
99 , containers >= 0.5
100 , tasty >= 0.11
101 , tasty-hunit >= 0.9
102 , text >= 1.2
103 , transformers >= 0.5