Update cabal file

This commit is contained in:
CrystalSplitter 2023-08-02 22:45:17 -07:00
parent afaad53b90
commit 508475b38f

View File

@ -6,7 +6,7 @@ synopsis: A Terminal User Interface (TUI) for GHCi
-- A longer description of the package.
-- description:
-- bug-reports:
bug-reports: https://github.com/CrystalSplitter/ghcitui
license: BSD-3-Clause
author: Jordan 'CrystalSplitter' R AW
maintainer: gamewhizzit@gmail.com
@ -22,16 +22,17 @@ executable ghcitui
build-depends: base ^>= 4.17
, containers ^>= 0.6.7
, brick
, text
, text ^>= 2.0.2
, ghcituilib
, vty
, safe
, safe ^>= 0.3.19
, microlens ^>= 0.4.13.1
, text-zipper ^>= 0.13
hs-source-dirs: app
other-modules: BrickUI
, AppState
, AppTopLevel
, Util
ghc-options: -rtsopts
-threaded
-Wall
@ -40,10 +41,11 @@ executable ghcitui
-Wpartial-fields
-Wredundant-constraints
default-language: Haskell2010
default-extensions: OverloadedRecordDot
DuplicateRecordFields
default-extensions: DuplicateRecordFields
OverloadedRecordDot
OverloadedStrings
RecordWildCards
TupleSections
library ghcituilib
hs-source-dirs: lib
@ -60,6 +62,7 @@ library ghcituilib
, Tui
, Loc
, StringUtil
, NameBinding
other-modules: ParseContext
ghc-options: -rtsopts
-threaded
@ -73,3 +76,4 @@ library ghcituilib
DuplicateRecordFields
OverloadedStrings
RecordWildCards
TupleSections