-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathghcitui.cabal
166 lines (157 loc) · 6.11 KB
/
ghcitui.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
cabal-version: 2.4
name: ghcitui
version: 0.4.1.0
synopsis: A Terminal User Interface (TUI) for GHCi
description:
A terminal user interface for GHCi debug mode.
.
Features:
.
* A source view window, with debug keybindings.
.
* Live variable bindings.
.
* Live loaded modules.
.
* Visible trace history.
.
* An GHCi session in the current context.
author: Jordan 'Crystal' R AW
bug-reports: https://github.com/CrystalSplitter/ghcitui/issues
category: Debug
copyright: Jordan 'Crystal' R AW
homepage: https://github.com/CrystalSplitter/ghcitui
license-file: LICENSE
license: BSD-3-Clause
maintainer: [email protected]
stability: experimental
tested-with: GHC == 9.2.8
||==9.4.7
||==9.4.8
||==9.8.1
||==9.8.2
extra-source-files: LICENSE
, assets/splash.txt
, gen/MANUAL.txt
extra-doc-files: CHANGELOG.md
, MANUAL.rst
, README.md
, docs/assets/20240116_splash.png
source-repository head
type: git
location: https://github.com/CrystalSplitter/ghcitui
executable ghcitui
main-is: Main.hs
build-depends: base >= 4.16 && < 5
, ghcitui-brick
, optparse-applicative >= 0.17 && < 0.19
, ghcitui
, text
hs-source-dirs: app
other-modules: Paths_ghcitui
autogen-modules: Paths_ghcitui
ghc-options: -rtsopts
-threaded
-Wall
-Wcompat
-Wincomplete-record-updates
-Wpartial-fields
-Wredundant-constraints
default-language: Haskell2010
default-extensions: MonoLocalBinds
OverloadedStrings
RecordWildCards
library
hs-source-dirs: lib/ghcitui-core
build-depends: base >= 4.16 && < 5
, array ^>= 0.5
, containers >= 0.6.8 && < 0.8
, errors >= 2.2 && < 2.4
-- Needed to limit ghcid compat.
, extra >= 1.7.14 && < 1.9
, ghcid >= 0.8.8 && < 0.9
, regex-base ^>= 0.94.0.2
, regex-tdfa >= 1.3.2 && < 1.4
, string-interpolate >= 0.3.2.1 && < 0.4
-- Pinned to less than 2.1.2, because it breaks
-- with FSNotify.
, text >= 2.0 && < 2.3
, fsnotify ^>= 0.4.1.0
, transformers ^>= 0.6.1.0
-- Needed to limit string-interpolate compat.
, utf8-string >= 1.0.2 && < 1.1
exposed-modules: Ghcitui.Ghcid.Daemon
, Ghcitui.Ghcid.LogConfig
, Ghcitui.Ghcid.ParseContext
, Ghcitui.Ghcid.ParseError
, Ghcitui.Ghcid.ParseTabCompletions
, Ghcitui.Loc
, Ghcitui.NameBinding
, Ghcitui.Util
other-modules: Ghcitui.Ghcid.StartupConfig
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wpartial-fields
-Wredundant-constraints
default-language: Haskell2010
default-extensions: DuplicateRecordFields
MonoLocalBinds
NamedFieldPuns
OverloadedStrings
RecordWildCards
TupleSections
library ghcitui-brick
hs-source-dirs: lib/ghcitui-brick
build-depends: base >= 4.16 && < 5
, brick >= 2.2 && < 2.5
, containers
, errors
, file-embed ^>= 0.0.15
, ghcitui
, microlens >= 0.4.0.1 && < 0.5
, microlens-th ^>= 0.4
, text
, text-zipper ^>= 0.13
, vector >= 0.10 && < 0.14
, vty >= 5.38 && < 6.3
, word-wrap ^>= 0.5
exposed-modules: Ghcitui.Brick
other-modules: Ghcitui.Brick.AppConfig
, Ghcitui.Brick.AppInterpState
, Ghcitui.Brick.AppState
, Ghcitui.Brick.AppTopLevel
, Ghcitui.Brick.BrickUI
, Ghcitui.Brick.DrawSourceViewer
, Ghcitui.Brick.Events
, Ghcitui.Brick.EventUtils
, Ghcitui.Brick.HelpText
, Ghcitui.Brick.InterpWindowEvents
, Ghcitui.Brick.SourceWindow
, Ghcitui.Brick.SourceWindowEvents
, Ghcitui.Brick.SplashTextEmbed
ghc-options: -Wall
-Wcompat
-Wincomplete-record-updates
-Wpartial-fields
-Wredundant-constraints
default-language: Haskell2010
default-extensions: DuplicateRecordFields
LambdaCase
MonoLocalBinds
NamedFieldPuns
OverloadedStrings
RecordWildCards
TupleSections
test-suite spec
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends: base >= 4.16 && < 5
, text
, ghcitui
, hspec ^>= 2.11.5
other-modules: LocSpec
, ParseContextSpec
, UtilSpec
default-language: Haskell2010