diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-29 04:11:10 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-03-14 07:07:39 +0100 |
commit | f92c593a3d2c4bdb023fdd834b6e8c874d063cc8 (patch) | |
tree | b506bb61f4951207aa1aff04080fd3d7874927c3 /anissue.cabal | |
parent | 941f0d4ccb688d42c0438e05051ed78a410431b6 (diff) |
feat: add `review` command
Prototype of the `review` command, cf. `anissue review -h`. Also adds
the `status` command.
Diffstat (limited to 'anissue.cabal')
-rw-r--r-- | anissue.cabal | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/anissue.cabal b/anissue.cabal index 434f4b2..78d5e96 100644 --- a/anissue.cabal +++ b/anissue.cabal @@ -71,6 +71,7 @@ executable anissue Comment Comment.Language Data.List.Extra + Data.List.NonEmpty.Zipper.Extra Debug Die Exception @@ -93,7 +94,9 @@ executable anissue Patch Process Render + Review Settings + Status Text.Diff.Extra TreeSitter Tuple @@ -206,7 +209,7 @@ executable anissue -- other-extensions: -- Other library packages from which modules are imported. - build-depends: base ^>=4.16.4.0, + build-depends: base, aeson, attoparsec, binary, @@ -220,6 +223,8 @@ executable anissue generic-deriving, lingo, megaparsec, + mtl, + nonempty-zipper, optparse-applicative, parallel-io, prettyprinter, |