diff options
Diffstat (limited to 'minici.cabal')
-rw-r--r-- | minici.cabal | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/minici.cabal b/minici.cabal index 8858889..692dafe 100644 --- a/minici.cabal +++ b/minici.cabal @@ -24,7 +24,8 @@ executable minici ghc-options: -Wall -- Modules included in this executable, other than Main. - -- other-modules: + other-modules: Config + Job -- LANGUAGE extensions used by modules in this package. default-extensions: ExistentialQuantification @@ -35,15 +36,20 @@ executable minici ImportQualifiedPost LambdaCase MultiParamTypeClasses + MultiWayIf OverloadedStrings ScopedTypeVariables TupleSections TypeApplications -- other-extensions: build-depends: base ^>=4.15.1.0 + , bytestring >=0.10 && <0.11 + , containers >=0.6 && <0.7 , directory >=1.3 && <1.4 , filepath >=1.4 && <1.5 + , HsYAML >=0.2 && <0.3 , mtl >=2.2 && <2.3 + , parser-combinators >=1.3 && <1.4 , process >=1.6 && <1.7 , text >=1.2 && <1.3 hs-source-dirs: src |