packages feed

reflex-classhss-0.1.0.0: reflex-classhss.cabal

cabal-version:      2.4
name:               reflex-classhss
version:            0.1.0.0
synopsis:
        ClasshSS defined element builders for Reflex
description:
        Using ClasshSS this module provides a number of interfaces to rapidly build UIs,
        in particular there is a focus on text and layouts

homepage:           https://github.com/augyg/ClasshSS
license:            MIT
license-file:       LICENSE
author:             Galen Sprout
maintainer:         galen.sprout@gmail.com
-- copyright:
category:           Web
build-type:         Simple
extra-doc-files:    CHANGELOG.md
-- extra-source-files:

source-repository head
  type:                git
  location:            https://github.com/augyg/reflex-classhss
   
common warnings
    ghc-options: -Wall

library
    import:           warnings
    exposed-modules:  Classh.Reflex
                      Classh.Reflex.El
                      Classh.Reflex.Layout
                      Classh.Reflex.Text
                      Classh.Reflex.Place
    build-depends: ClasshSS >= 0.2.0 && < 0.3
                 , base >= 4.20.2 && < 4.21
                 , containers >= 0.7 && < 0.8
                 , data-default >= 0.8.0 && < 0.9
                 , lens >= 5.3.6 && < 5.4
                 , reflex-dom-core >= 0.8.1 && < 0.9
                 , template-haskell >= 2.22.0 && < 2.23
                 , text >= 2.1.3 && < 2.2


    build-depends:    base
                      --^>=4.15.1.0
                    , containers
                    , data-default
                      -->= 0.7.1 && < 0.8
                    , lens
                      -->= 5.2.3 && < 5.3
                    , template-haskell
                    , reflex-dom-core
                    , ClasshSS
                      -->= 2.17.0 && < 2.18
                    , text
                      -->= 1.2.5 && < 1.3
    hs-source-dirs:   src
    ghc-options: -Wall -threaded -fno-show-valid-hole-fits
    default-language: Haskell2010