]> Git — Sourcephile - haskell/symantic-cli.git/blob - symantic-cli.cabal
Update to megaparsec-7
[haskell/symantic-cli.git] / symantic-cli.cabal
1 name: symantic-cli
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 0.0.0.20190121
6 category: Data Structures
7 synopsis: Library for Command Line Interface (CLI)
8 description: Symantics for CLI.
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.4.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 Language.Symantic.CLI
32 Language.Symantic.CLI.Fixity
33 Language.Symantic.CLI.Help
34 Language.Symantic.CLI.Plain
35 Language.Symantic.CLI.Read
36 Language.Symantic.CLI.Sym
37 Language.Symantic.CLI.Test
38 default-language: Haskell2010
39 default-extensions:
40 FlexibleContexts
41 FlexibleInstances
42 LambdaCase
43 MultiParamTypeClasses
44 NamedFieldPuns
45 NoImplicitPrelude
46 RecordWildCards
47 ScopedTypeVariables
48 TupleSections
49 TypeFamilies
50 ghc-options:
51 -Wall
52 -Wincomplete-uni-patterns
53 -Wincomplete-record-updates
54 -fno-warn-tabs
55 -- -fhide-source-paths
56 build-depends:
57 base >= 4.10 && < 5
58 , containers >= 0.5
59 , text >= 1.2
60 , transformers >= 0.5
61 , megaparsec >= 7.0
62 , parser-combinators >= 1.0
63 , symantic-document