packages feed

htmx-servant-0.2.0.1: htmx-servant.cabal

cabal-version:      3.6
name:               htmx-servant
version:            0.2.0.1
synopsis:           Use htmx with servant
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:
    DataKinds
    LambdaCase
    OverloadedStrings

library
  import:           def-exts

  -- cabal-fmt: expand src
  exposed-modules:
    Htmx.Servant.Lucid
    Htmx.Servant.Request
    Htmx.Servant.Response

  hs-source-dirs:   src
  build-depends:
    , base        >=4.7      && <5
    , htmx
    , htmx-lucid
    , lucid2      >=0.0.20221012
    , servant     >=0.19     && <0.30
    , text        >=2        && <3

  default-language: Haskell2010