diff options
Diffstat (limited to 'minici.cabal')
-rw-r--r-- | minici.cabal | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/minici.cabal b/minici.cabal index 55bad96..1dce029 100644 --- a/minici.cabal +++ b/minici.cabal @@ -21,12 +21,29 @@ maintainer: roman.smrz@seznam.cz executable minici main-is: Main.hs + ghc-options: -Wall -- Modules included in this executable, other than Main. -- other-modules: -- LANGUAGE extensions used by modules in this package. + default-extensions: ExistentialQuantification + FlexibleContexts + FlexibleInstances + GADTs + GeneralizedNewtypeDeriving + ImportQualifiedPost + LambdaCase + MultiParamTypeClasses + OverloadedStrings + ScopedTypeVariables + TupleSections + TypeApplications -- other-extensions: build-depends: base ^>=4.15.1.0 + , directory >=1.3 && <1.4 + , mtl >=2.2 && <2.3 + , process >=1.6 && <1.7 + , text >=1.2 && <1.3 hs-source-dirs: src default-language: Haskell2010 |