ghcitui/ghcitui.cabal
Brad Neimann e1f38caa3c Implement tab completion
This provides the GHCi Repl inside GHCiTUI with basic tab completion.
This is slightly more advanced than the standard GHCi tab completion,
but not by much.

This commit also moves around some error and parsing code to help
in this effort.

Co-authored-by: CrystalSplitter <crystal@crystalwobsite.gay>
2024-02-10 20:17:42 -08:00

155 lines
5.6 KiB
Plaintext

cabal-version: 2.4
name: ghcitui
version: 0.1.0.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: crystal@crystalwobsite.gay
stability: experimental
tested-with: GHC == 9.2.8, GHC == 9.4.8, GHC == 9.8.1
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.8
, 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
, text >= 2.0 && < 2.2
, 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.4
, 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.2
, 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.HelpText
, Ghcitui.Brick.SourceWindow
, 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
, ghcitui
, hspec ^>= 2.11.5
other-modules: LocSpec
, UtilSpec
default-language: Haskell2010