sync language extensions with the cabal file
This commit is contained in:
parent
89f56b9f0d
commit
7f7e39213e
|
|
@ -3,7 +3,6 @@
|
|||
{-# LANGUAGE LambdaCase #-}
|
||||
{-# LANGUAGE MultiWayIf #-}
|
||||
{-# LANGUAGE RankNTypes #-}
|
||||
{-# LANGUAGE TupleSections #-}
|
||||
{-# LANGUAGE NoMonomorphismRestriction #-}
|
||||
|
||||
module Waterdeep.Actions
|
||||
|
|
|
|||
|
|
@ -15,24 +15,25 @@ cabal-version: >=1.10
|
|||
executable waterdeep
|
||||
main-is: ConsoleUI.hs
|
||||
-- other-modules:
|
||||
other-extensions: GADTs,
|
||||
RankNTypes,
|
||||
TemplateHaskell,
|
||||
FlexibleContexts,
|
||||
LambdaCase,
|
||||
NoMonomorphismRestriction,
|
||||
other-extensions: FlexibleContexts,
|
||||
FlexibleInstances,
|
||||
MultiParamTypeClasses
|
||||
GADTs,
|
||||
LambdaCase,
|
||||
MultiParamTypeClasses,
|
||||
MultiWayIf,
|
||||
NoMonomorphismRestriction,
|
||||
RankNTypes,
|
||||
TemplateHaskell
|
||||
build-depends: base >=4.6 && <4.7,
|
||||
MonadPrompt >=1.0 && <1.1,
|
||||
MonadRandom >=0.1 && <0.2,
|
||||
mtl >=2.1 && <2.2,
|
||||
containers >=0.5 && <0.6,
|
||||
lens-family >=1.0 && <1.1,
|
||||
lens-family-th >=0.3 && <0.4,
|
||||
mtl >=2.1 && <2.2,
|
||||
multiset >=0.2 && <0.3,
|
||||
random >=1.0 && <1.1,
|
||||
random-shuffle >=0.0 && <0.1,
|
||||
containers >=0.5 && <0.6,
|
||||
multiset >=0.2 && <0.3,
|
||||
transformers >=0.3 && <0.4
|
||||
hs-source-dirs: src
|
||||
default-language: Haskell2010
|
||||
|
|
|
|||
Loading…
Reference in New Issue