packages feed

servant-htmx-0.1.0.2: servant-htmx.cabal

cabal-version:      1.12
name:               servant-htmx
version:            0.1.0.2
license:            BSD3
license-file:       LICENSE
copyright:          2022 Monadic Systems LLC
maintainer:         tech@monadic.systems
author:             Monadic Systems LLC
homepage:           https://github.com/MonadicSystems/servant-htmx#readme
bug-reports:        https://github.com/MonadicSystems/servant-htmx/issues
synopsis:           A library for using servant with htmx
description:
    Please see the README on GitHub at <https://github.com/MonadicSystems/servant-htmx#readme>

category:           Web
build-type:         Simple
extra-source-files:
    README.md
    ChangeLog.md

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

library
    exposed-modules:  Servant.Htmx
    hs-source-dirs:   src
    other-modules:    Paths_servant_htmx
    default-language: Haskell2010
    build-depends:
        base >=4.7 && <5,
        servant-server >=0.18.3 && <0.19,
        text >=1.2.4.1 && <1.3

executable servant-htmx-exe
    main-is:          Main.hs
    hs-source-dirs:   app
    other-modules:    Paths_servant_htmx
    default-language: Haskell2010
    ghc-options:      -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.7 && <5,
        servant-htmx -any,
        servant-server >=0.18.3 && <0.19,
        text >=1.2.4.1 && <1.3

test-suite servant-htmx-test
    type:             exitcode-stdio-1.0
    main-is:          Spec.hs
    hs-source-dirs:   test
    other-modules:    Paths_servant_htmx
    default-language: Haskell2010
    ghc-options:      -threaded -rtsopts -with-rtsopts=-N
    build-depends:
        base >=4.7 && <5,
        servant-htmx -any,
        servant-server >=0.18.3 && <0.19,
        text >=1.2.4.1 && <1.3