]> Git — Sourcephile - haskell/symantic.git/blob - symantic-grammar/symantic-grammar.cabal
Massage .cabal files.
[haskell/symantic.git] / symantic-grammar / symantic-grammar.cabal
1 name: symantic-grammar
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 0.3.0.20180213
6 category: Language
7 synopsis: Library for symantic grammars.
8 description: This library defines an embedded DSL for regular or context-free grammars,
9 in the <http://okmij.org/ftp/tagless-final/ Tagless-Final> way (aka. the /symantic/ way).
10 .
11 See @Test.hs@ or source code of <https://hackage.haskell.org/package/symantic symantic>
12 and <https://hackage.haskell.org/package/symantic-lib symantic-lib> for examples of use.
13 extra-doc-files:
14 license: GPL-3
15 license-file: COPYING
16 stability: experimental
17 author: Julien Moutinho <julm+symantic@autogeree.net>
18 maintainer: Julien Moutinho <julm+symantic@autogeree.net>
19 bug-reports: Julien Moutinho <julm+symantic@autogeree.net>
20 -- homepage:
21
22 build-type: Simple
23 cabal-version: >= 1.24
24 tested-with: GHC==8.2.2
25 extra-source-files:
26 stack.yaml
27 extra-tmp-files:
28
29 Source-Repository head
30 location: git://git.autogeree.net/symantic
31 type: git
32
33 Library
34 exposed-modules:
35 Language.Symantic.Grammar
36 Language.Symantic.Grammar.BinTree
37 Language.Symantic.Grammar.ContextFree
38 Language.Symantic.Grammar.EBNF
39 Language.Symantic.Grammar.Fixity
40 Language.Symantic.Grammar.Meta
41 Language.Symantic.Grammar.Operators
42 Language.Symantic.Grammar.Regular
43 Language.Symantic.Grammar.Terminal
44 Language.Symantic.Grammar.Source
45 Language.Symantic.Grammar.Error
46 default-language: Haskell2010
47 default-extensions:
48 DataKinds
49 FlexibleContexts
50 FlexibleInstances
51 GeneralizedNewtypeDeriving
52 KindSignatures
53 LambdaCase
54 MultiParamTypeClasses
55 OverloadedStrings
56 ScopedTypeVariables
57 StandaloneDeriving
58 ghc-options:
59 -Wall
60 -Wincomplete-uni-patterns
61 -Wincomplete-record-updates
62 -fno-warn-tabs
63 -fhide-source-paths
64 build-depends:
65 base >= 4.6 && < 5
66 , text >= 1.2
67
68 Test-Suite symantic-grammar-test
69 type: exitcode-stdio-1.0
70 hs-source-dirs: test
71 main-is: Main.hs
72 other-modules:
73 HUnit
74 default-language: Haskell2010
75 default-extensions:
76 FlexibleContexts
77 FlexibleInstances
78 MultiParamTypeClasses
79 OverloadedStrings
80 ScopedTypeVariables
81 TypeFamilies
82 ghc-options:
83 -Wall
84 -Wincomplete-uni-patterns
85 -Wincomplete-record-updates
86 -fno-warn-tabs
87 -fhide-source-paths
88 build-depends:
89 symantic-grammar
90 , base >= 4.6 && < 5
91 , megaparsec >= 6.3
92 , tasty >= 0.11
93 , tasty-hunit >= 0.9
94 , text >= 1.2
95 , transformers >= 0.5