fix declared language extensions
This commit is contained in:
parent
da107970fb
commit
2f926c6a71
34
breve.cabal
34
breve.cabal
@ -23,19 +23,21 @@ source-repository head
|
|||||||
location: https://maxwell.ydns.eu/git/rnhmjoj/breve
|
location: https://maxwell.ydns.eu/git/rnhmjoj/breve
|
||||||
|
|
||||||
executable breve
|
executable breve
|
||||||
main-is: Main.hs
|
main-is: Main.hs
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
other-modules: Application, Views, Breve.Settings,
|
other-modules: Application, Views, Breve.Settings,
|
||||||
Breve.Generator, Breve.UrlTable,
|
Breve.Generator, Breve.UrlTable,
|
||||||
Paths_breve
|
Paths_breve
|
||||||
other-extensions: OverloadedStrings
|
default-extensions: OverloadedStrings
|
||||||
build-depends: base >=4.8 && <5.0,
|
other-extensions: RecordWildCards, DeriveGeneric,
|
||||||
warp, warp-tls, tls, blaze-html, blaze-markup,
|
DataKinds, KindSignatures, TypeOperators
|
||||||
servant-server, servant, servant-blaze,
|
build-depends: base >=4.8 && <5.0,
|
||||||
wai, wai-extra, streaming-commons, http-api-data,
|
warp, warp-tls, tls, blaze-html, blaze-markup,
|
||||||
transformers, mtl,
|
servant-server, servant, servant-blaze,
|
||||||
text, aeson, bytestring, binary,
|
wai, wai-extra, streaming-commons, http-api-data,
|
||||||
hashtables, cryptohash, random,
|
transformers, mtl,
|
||||||
configurator, directory
|
text, aeson, bytestring, binary,
|
||||||
ghc-options: -threaded -O2
|
hashtables, cryptohash, random,
|
||||||
|
configurator, directory
|
||||||
|
ghc-options: -threaded -O2
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
{-# LANGUAGE OverloadedStrings #-}
|
|
||||||
|
|
||||||
{-|
|
{-|
|
||||||
This module defines the Breve configuration
|
This module defines the Breve configuration
|
||||||
parser and application settings.
|
parser and application settings.
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{-# LANGUAGE OverloadedStrings #-}
|
{-# LANGUAGE RecordWildCards #-}
|
||||||
{-# LANGUAGE RecordWildCards #-}
|
|
||||||
|
|
||||||
{-|
|
{-|
|
||||||
This is the main module, which actually
|
This is the main module, which actually
|
||||||
|
@ -1,5 +1,3 @@
|
|||||||
{-# LANGUAGE OverloadedStrings #-}
|
|
||||||
|
|
||||||
{-|
|
{-|
|
||||||
This module contains the HTML pages used by the
|
This module contains the HTML pages used by the
|
||||||
web application. These are all obtained by filling
|
web application. These are all obtained by filling
|
||||||
|
Loading…
Reference in New Issue
Block a user