packages feed

type-of-html-static-0.1.0.1: type-of-html-static.cabal

name:                 type-of-html-static
version:              0.1.0.1
synopsis:             Optimize static parts of type-of-html.
description:          This library provides the TH-function 'static' to annote which parts of your page are static to dramatically increase performance.
                      It converts and escapes it's argument at compiletime and lifts it to a Proxy Symbol to avoid even appending of Builder.
license:              BSD3
license-file:         LICENSE
author:               Florian Knupfer
maintainer:           fknupfer@gmail.com
homepage:             https://github.com/knupfer/type-of-html-static
tested-with:          GHC == 8.2.2
                    , GHC == 8.4.2
copyright:            2018, Florian Knupfer
category:             Language, Text, Web, HTML
build-type:           Simple
extra-source-files:   ChangeLog.md
                    , Readme.md
cabal-version:        >=1.10
source-repository     head
   Type: git
   Location: https://github.com/knupfer/type-of-html-static

library
  exposed-modules:    Html.Static
  hs-source-dirs:     src
  default-language:   Haskell2010
  ghc-options:        -Wall
  build-depends:      base >=4.9 && < 5
                    , type-of-html
                    , template-haskell

test-suite test
  type:               exitcode-stdio-1.0
  main-is:            Main.hs
  hs-source-dirs:     test
  ghc-options:        -Wall
  default-language:   Haskell2010
  build-depends:      base >= 4.9 && < 5
                    , type-of-html
                    , type-of-html-static