mustache-2.3.0: mustache.cabal
-- This file has been generated from package.yaml by hpack version 0.17.1.
--
-- see: https://github.com/sol/hpack
name: mustache
version: 2.3.0
synopsis: A mustache template parser library.
description: Allows parsing and rendering template files with mustache markup. See the
mustache <http://mustache.github.io/mustache.5.html language reference>.
.
Implements the mustache spec version 1.1.3.
.
/Note/: Versions including and beyond 0.4 are compatible with ghc 7.8 again.
category: Development
homepage: https://github.com/JustusAdam/mustache
bug-reports: https://github.com/JustusAdam/mustache/issues
author: Justus Adam
maintainer: dev@justus.science
copyright: (c) 2015,
2016 Justus Adam
license: BSD3
license-file: LICENSE
tested-with: GHC>=7.8 && <=7.10.2
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
CHANGELOG.md
README.md
test/unit/examples/partials/test-partial.txt.mustache
test/unit/examples/test-template-partials.txt.mustache
test/unit/examples/test-template.txt.mustache
source-repository head
type: git
location: git://github.com/JustusAdam/mustache.git
library
hs-source-dirs:
src
default-extensions: LambdaCase TupleSections
other-extensions: NamedFieldPuns OverloadedStrings LambdaCase TupleSections TemplateHaskell QuasiQuotes
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, text
, aeson
, bytestring
, filepath
, parsec
, mtl >=2.2.1
, either
, unordered-containers
, vector
, directory
, scientific
, containers
, template-haskell
, th-lift
exposed-modules:
Text.Mustache
Text.Mustache.Types
Text.Mustache.Parser
Text.Mustache.Compile
Text.Mustache.Render
other-modules:
Text.Mustache.Internal
Text.Mustache.Internal.Types
Paths_mustache
default-language: Haskell2010
executable haskell-mustache
main-is: Main.hs
hs-source-dirs:
app
ghc-options: -threaded -Wall
build-depends:
base >=4.7 && <5
, text
, aeson
, bytestring
, filepath
, mustache
, yaml
, cmdargs
default-language: Haskell2010
test-suite language-specifications
type: exitcode-stdio-1.0
main-is: Language.hs
hs-source-dirs:
test/integration
build-depends:
base >=4.7 && <5
, text
, aeson
, bytestring
, filepath
, hspec
, mustache
, unordered-containers
, yaml
, base-unicode-symbols
, wreq
, zlib
, tar
, lens
default-language: Haskell2010
test-suite unit-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test/unit
build-depends:
base >=4.7 && <5
, text
, aeson
, bytestring
, filepath
, hspec
, mustache
, unordered-containers
, yaml
, process
, temporary
, directory
default-language: Haskell2010