packages feed

HSmarty-0.4.1: HSmarty.cabal

name:                HSmarty
version:             0.4.1
synopsis:            Small template engine
description:         Haskell implementation of a subset of the PHP-Smarty template language
Homepage:            https://github.com/agrafix/HSmarty
Bug-reports:         https://github.com/agrafix/HSmarty/issues
license:             BSD3
license-file:        LICENSE
author:              Alexander Thiemann <mail@athiemann.net>
maintainer:          Alexander Thiemann <mail@athiemann.net>
copyright:           (c) 2013 - 2020 by Alexander Thiemann
category:            Text
build-type:          Simple
cabal-version:       >=1.10
data-dir:            data
data-files:          test.tpl,
                     testCapture.tpl,
                     testCapture.txt
tested-with:         GHC==8.8.4

Library
  hs-source-dirs:    src
  exposed-modules:   Text.HSmarty,
                     Text.HSmarty.Parser.Smarty,
                     Text.HSmarty.Parser.Util,
                     Text.HSmarty.Types
  other-modules:     Text.HSmarty.Render.Engine, Paths_HSmarty
  Ghc-Options:       -Wall
  default-language:  Haskell2010
  build-depends:
                     HTTP,
                     aeson >=0.8,
                     attoparsec >=0.11,
                     attoparsec-expr >=0.1.1,
                     base >= 4.8 && < 5,
                     mtl >=2.2,
                     scientific >=0.3,
                     text >=1.2,
                     unordered-containers >=0.2,
                     vector >=0.10,
                     Glob >= 0.7,
                     filepath,
                     bytestring

Test-Suite TestHSmarty
  hs-source-dirs:    test
  other-modules:     Text.HSmarty.Parser.SmartyTest, 
                     Text.HSmarty.Render.EngineTest, 
                     Paths_HSmarty
  Type:              exitcode-stdio-1.0
  Main-Is:           Tests.hs
  Ghc-Options:       -Wall
  default-language:  Haskell2010
  build-depends:
                     HSmarty,
                     HTF,
                     aeson >=0.8,
                     attoparsec >=0.11,
                     base >= 4 && < 5,
                     text >=1.2

source-repository head
  type:     git
  location: git://github.com/agrafix/HSmarty.git