diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-01-19 19:32:53 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-01-28 21:18:57 +0100 |
commit | 9678331ed60bd487547c07e369aa5a06252d0954 (patch) | |
tree | 0a1a89663ef1faa47feb28455d4f2283a882f66f /erebos.cabal | |
parent | 3e93319284aa86cc462137bda1594368361a1905 (diff) |
Custom prompt implementation instead of Haskeline
Changelog: New CLI prompt implementation providing cleaner interface
Changelog: CLI: Avoids displaying sent messages twice – both in previous prompt and in message history
Diffstat (limited to 'erebos.cabal')
-rw-r--r-- | erebos.cabal | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/erebos.cabal b/erebos.cabal index ccf1e42..cfa826f 100644 --- a/erebos.cabal +++ b/erebos.cabal @@ -184,6 +184,7 @@ executable erebos main-is: Main.hs other-modules: Paths_erebos + Terminal Test Test.Service Version @@ -192,14 +193,15 @@ executable erebos Paths_erebos build-depends: + ansi-terminal ^>= { 1.1.2 }, bytestring, crypton, directory, erebos, - haskeline >=0.7 && <0.9, mtl, network, process >=1.6 && <1.7, + stm, template-haskell ^>= { 2.17, 2.18, 2.19, 2.20, 2.21, 2.22 }, text, time, |