packages feed

css-simple-0.1.0.1: css-simple.cabal

cabal-version:      1.12
name:               css-simple
version:            0.1.0.1
license:            GPL-3
license-file:       LICENSE
copyright:          2022 Alexey Seledkov
maintainer:         qyutou@gmail.com
author:             Alexey Seledkov
homepage:           https://github.com/Qyutou/css-simple#readme
bug-reports:        https://github.com/Qyutou/css-simple/issues
synopsis:           eDSL for CSS
description:        See the "Css" module description
category:           Web
build-type:         Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
    type:     git
    location: https://github.com/Qyutou/css-simple

library
    exposed-modules:
        Css
        Css.Internal
        Css.Properties

    hs-source-dirs:   src
    other-modules:    Paths_css_simple
    default-language: Haskell2010
    build-depends:
        base >=4.7 && <5,
        mtl >=2.2.2 && <2.3,
        text >=1.2.5.0 && <1.3,
        text-builder >=0.6.6.5 && <0.7

test-suite css-simple-test
    type:             exitcode-stdio-1.0
    main-is:          Spec.hs
    hs-source-dirs:   test
    other-modules:    Paths_css_simple
    default-language: Haskell2010
    ghc-options:      -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.7 && <5,
        css-simple -any,
        mtl >=2.2.2 && <2.3,
        text >=1.2.5.0 && <1.3,
        text-builder >=0.6.6.5 && <0.7

benchmark css-simple-bench
    type:             exitcode-stdio-1.0
    main-is:          Bench.hs
    hs-source-dirs:   bench
    other-modules:    Paths_css_simple
    default-language: Haskell2010
    ghc-options:      -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.7 && <5,
        criterion >=1.5.13.0 && <1.6,
        css-simple -any,
        mtl >=2.2.2 && <2.3,
        text >=1.2.5.0 && <1.3,
        text-builder >=0.6.6.5 && <0.7