1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: bc09a14475e42f4d9f29dd5063a9bde24ddcf078b0d4749b9a91275c3c82231b
name: css-text
version: 0.1.3.0
synopsis: CSS parser and renderer.
description: Please see the README and generated docs at <https://www.stackage.org/package/css-text>
category: Web, Yesod
stability: Stable
homepage: https://github.com/yesodweb/css-text.git#readme
bug-reports: https://github.com/yesodweb/css-text.git/issues
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info>
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
ChangeLog.md
README.md
source-repository head
type: git
location: https://github.com/yesodweb/css-text.git
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
attoparsec >=0.10.2.0
, base >=4 && <5
, text >=0.11
if !(impl(ghc >=8.0))
build-depends:
semigroups >=0.16.1
exposed-modules:
Text.CSS.Parse
Text.CSS.Render
other-modules:
Paths_css_text
default-language: Haskell2010
test-suite runtests
type: exitcode-stdio-1.0
main-is: runtests.hs
hs-source-dirs:
test
build-depends:
QuickCheck
, attoparsec >=0.10.2.0
, base >=4 && <5
, css-text
, hspec >=1.3
, text >=0.11
other-modules:
Paths_css_text
default-language: Haskell2010
|