remove version locks from cabal file
This commit is contained in:
parent
0a400a801c
commit
ede1c5e623
2 changed files with 14 additions and 14 deletions
|
@ -15,15 +15,15 @@ executable blog-proxy
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
base ^>= 4.18.2.0,
|
base,
|
||||||
bytestring ^>= 0.11.5.0,
|
bytestring,
|
||||||
text ^>= 2.0.0,
|
text,
|
||||||
split ^>= 0.2.5,
|
split,
|
||||||
containers ^>= 0.6.7,
|
containers,
|
||||||
filepath ^>= 1.4.300.0,
|
filepath,
|
||||||
directory ^>= 1.3.8.0,
|
directory,
|
||||||
aeson ^>= 2.1.2.0,
|
aeson,
|
||||||
http-types ^>= 0.12.4,
|
http-types,
|
||||||
http-conduit ^>= 2.3.9.0,
|
http-conduit,
|
||||||
wai ^>= 3.2.4,
|
wai,
|
||||||
warp ^>= 3.3.31,
|
warp,
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
module TemplateLoader (loadTemplates) where
|
module TemplateLoader (loadTemplates) where
|
||||||
|
|
||||||
import Data.Bool (bool)
|
import Data.Bool (bool)
|
||||||
import System.FilePath ((</>))
|
|
||||||
import System.Directory (listDirectory, doesDirectoryExist)
|
|
||||||
import qualified Data.ByteString as BS
|
import qualified Data.ByteString as BS
|
||||||
import qualified Data.Text as T
|
import qualified Data.Text as T
|
||||||
import Data.Text (Text)
|
import Data.Text (Text)
|
||||||
|
import System.FilePath ((</>))
|
||||||
|
import System.Directory (listDirectory, doesDirectoryExist)
|
||||||
|
|
||||||
import TemplatePage (PageTemplate, parsePage, isUntemplated)
|
import TemplatePage (PageTemplate, parsePage, isUntemplated)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue