packages feed

htmx-lucid-0.1.0.0: htmx-lucid.cabal

cabal-version:      3.6
name:               htmx-lucid
version:            0.1.0.0
synopsis:           Use htmx with lucid
description:
  Please see the README on GitHub at <https://github.com/JonathanLorimer/htmx#readme>

license:            MIT
category:           Web, HTML
author:             Jonathan Lorimer
maintainer:         jonathanlorimer@pm.me
build-type:         Simple
extra-source-files: README.md

source-repository head
  type:     git
  location: https://github.com/JonathanLorimer/htmx

common def-exts
  default-extensions:
    LambdaCase
    OverloadedStrings

library
  import:           def-exts

  -- cabal-fmt: expand src
  exposed-modules:
    Htmx.Lucid.Core
    Htmx.Lucid.Extension.IncludeVals
    Htmx.Lucid.Extra
    Htmx.Lucid.Head

  hs-source-dirs:   src
  build-depends:
    , base   >=4.7      && <5
    , htmx
    , lucid  >=2.9.12.1 && <2.11.20230408.0
    , text   >=2        && <3

  default-language: Haskell2010