-
Notifications
You must be signed in to change notification settings - Fork 1
/
incremental-play.cabal
77 lines (72 loc) · 2.42 KB
/
incremental-play.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: incremental-play
version: 0.1.0.0
synopsis: Playing with incremental parsing
-- description:
homepage: https://github.com/alanz/incremental-play
license: GPL-3
license-file: LICENSE
author: Alan Zimmerman
maintainer: alan.zimm@gmail.com
-- copyright:
category: Development
build-type: Simple
extra-source-files: ChangeLog.md, README.md
cabal-version: >=2.0
library
hs-source-dirs: src generated-parsers
exposed-modules: Language.Incremental.LSP
Language.Incremental.Visualise
Language.Incremental.ParserTypes
other-modules: Repetitive2
build-depends: base >=4.9 && <4.13
, ansi-wl-pprint
, array
, containers
, data-default
, haskell-lsp
, hslogger
, lens
, megaparsec
, mtl
, optparse-applicative
, prettyprinter
, prettyprinter-ansi-terminal
, protolude
, stm
, text
, unix
, zippers
ghc-options: -Wall -fwarn-tabs -fwarn-unused-imports -fwarn-missing-signatures -fwarn-name-shadowing -fwarn-incomplete-patterns
default-language: Haskell2010
executable incremental-play
main-is: Main.hs
-- Other-Modules: Paths_HaRe
ghc-options: -Wall
hs-source-dirs:
./app
build-depends: base >= 4.9 && < 4.13
, array
, containers
, incremental-play
, lens
, prettyprinter
, prettyprinter-ansi-terminal
, zippers
-- , happy == 1.20.*
-- build-tools: happy == 1.20.*
default-language: Haskell2010
-- test-suite spec
-- type:
-- exitcode-stdio-1.0
-- ghc-options:
-- -Wall
-- main-is:
-- Main.hs
-- hs-source-dirs:
-- test
-- other-modules:
-- build-depends:
-- base >= 4.9 && < 4.11
source-repository head
type: git
location: https://github.com/alanz/incremental-play.git