diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2024-07-30 18:03:41 +0200 | 
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2024-07-30 20:29:30 +0200 | 
| commit | ec88b2eba98bac2429df00b2d9110050537f1c72 (patch) | |
| tree | db573ca0582e235be2bdc615de8d20445d6859c8 | |
| parent | 622321625fdc71fc412d91578a87bdd5f32f3434 (diff) | |
Support mtl-2.2
| -rw-r--r-- | minici.cabal | 2 | ||||
| -rw-r--r-- | src/Job.hs | 1 | 
2 files changed, 2 insertions, 1 deletions
| diff --git a/minici.cabal b/minici.cabal index a13984a..42ccb13 100644 --- a/minici.cabal +++ b/minici.cabal @@ -81,7 +81,7 @@ executable minici          exceptions ^>= { 0.10 },          filepath ^>= { 1.4, 1.5 },          HsYAML ^>= { 0.2 }, -        mtl ^>= { 2.2 }, +        mtl ^>= { 2.2, 2.3 },          parser-combinators ^>= { 1.3 },          process ^>= { 1.6 },          stm ^>= { 2.5 }, @@ -14,6 +14,7 @@ import Control.Concurrent.STM  import Control.Monad  import Control.Monad.Catch  import Control.Monad.Except +import Control.Monad.IO.Class  import Data.List  import Data.Text (Text) |