packages feed

css-text-0.0.0: css-text.cabal

name:            css-text
version:         0.0.0
license:         BSD3
license-file:    LICENSE
author:          Michael Snoyman <michael@snoyman.com>
maintainer:      Michael Snoyman <michael@snoyman.com>
synopsis:        CSS parser and renderer.
category:        Web, Yesod
stability:       Stable
cabal-version:   >= 1.8
build-type:      Simple
homepage:        http://www.yesodweb.com/

library
    build-depends:   base                      >= 4        && < 5
                   , text                      >= 0.11     && < 0.12
                   , attoparsec-text           >= 0.8.5.1  && < 0.9
    exposed-modules: Text.CSS.Parse
                     Text.CSS.Render
    ghc-options:     -Wall

test-suite runtests
    type: exitcode-stdio-1.0
    main-is: runtests.hs
    build-depends:   base                      >= 4        && < 5
                   , text                      >= 0.11     && < 0.12
                   , attoparsec-text           >= 0.8.5.1  && < 0.9
                   , HUnit                     >= 1.2      && < 1.3
                   , hspec                     >= 0.6.1    && < 0.7

source-repository head
  type:     git
  location: git://github.com/snoyberg/css-text.git