diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2022-12-05 22:07:27 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2022-12-06 20:37:37 +0100 |
commit | 39cf8f9919ba953f4e782609562781daf3d13868 (patch) | |
tree | 584d1b0741673489564d4775b82d7ad8025cb558 /minici.cabal | |
parent | 9162ce8010893f3694e213295140be771a344a29 (diff) |
Read job recipes from config file
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 |