packages feed

htmx-0.1.0.2: htmx.cabal

cabal-version:      3.6
name:               htmx
version:            0.1.0.2
synopsis:           Use htmx with various haskell libraries
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.Event
    Htmx.Extension
    Htmx.Render
    Htmx.Swap

  hs-source-dirs:   src
  build-depends:
    , base           >=4.7 && <5
    , http-api-data  >=0.5 && <0.7
    , text           >=2   && <3

  default-language: Haskell2010