-- Initial tamper.cabal generated by cabal init. For further -- documentation, see http://haskell.org/cabal/users-guide/ name: tamper version: 0.4.2.2 synopsis: Blaze-style HTML templates as a Monad Transformer. description: Tamper is a template library similar in approach to Blaze, but implemented as a Monad Transformer, which allows the programmer to lift actions from the underlying monad into templates. This makes it possible to do things like triggering database queries from within a template as needed, accessing a cache, reading data from disk, etc., all within the context of a template. license: BSD3 license-file: LICENSE author: Tobias Dammers maintainer: tdammers@gmail.com copyright: 2015 Tobias Dammers category: Text build-type: Simple -- extra-source-files: cabal-version: >=1.10 homepage: https://bitbucket.org/tdammers/tamper/ source-repository head type: git location: https://bitbucket.org/tdammers/tamper/ library exposed-modules: Text.Tamper , Text.Tamper.DOM , Text.Tamper.DOM.AttribList , Text.Tamper.Render , Text.Tamper.Render.Html , Text.Tamper.Tags , Text.Tamper.Tags.Html , Text.Tamper.Tags.Html.Attributes other-modules: Text.Tamper.Internal other-extensions: CPP build-depends: base >=4.5 && <5.0 , safe , containers >= 0.4 && < 1.0 , mtl >= 2.0 && < 3.0 , text >= 0.11 -- hs-source-dirs: default-language: Haskell2010