packages feed

servant-ede-0.5: servant-ede.cabal

name:                servant-ede
version:             0.5
synopsis:            Combinators for rendering EDE templates in servant web applications
description:
  Combinators for rendering EDE templates in servant web applications.
  .
  Documentation and examples available at "Servant.EDE".
homepage:            http://github.com/alpmestan/servant-ede
bug-reports:         http://github.com/alpmestan/servant-ede/issues
license:             BSD3
license-file:        LICENSE
author:              Alp Mestanogullari
maintainer:          alpmestan@gmail.com
copyright:           2015 Alp Mestanogullari
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10
source-repository head
  type: git
  location: git://github.com/alpmestan/servant-ede.git

library
  exposed-modules:
      Servant.EDE
    , Servant.EDE.Internal
    , Servant.EDE.Internal.Reify
    , Servant.EDE.Internal.ToObject
    , Servant.EDE.Internal.Validate

  build-depends:
      aeson >= 0.8 && <0.10
    , base >=4.7 && <5
    , bytestring >= 0.10 && <0.11
    , filepath >= 1.2 && <1.5
    , ede >= 0.2 && <0.3
    , either >= 4.0 && <4.5
    , http-media >= 0.6 && <0.7
    , http-types >= 0.8 && <0.9
    , semigroups >= 0.16 && <0.17
    , servant >= 0.4 && <0.5
    , text >= 1.0 && <1.3
    , transformers >= 0.4 && <0.5
    , unordered-containers >= 0.2 && <0.3
    , vector >= 0.9 && <0.11
    , wai >= 3.0 && <3.1
    , xss-sanitize >= 0.3 && <0.4

  ghc-options:         -O2 -Wall
  hs-source-dirs:      src
  default-language:    Haskell2010


executable servant-ede-example
  main-is: example.hs
  hs-source-dirs: example
  default-language: Haskell2010
  build-depends:
      base >= 4.7 && <5
    , ede
    , http-media
    , servant-server
    , servant-ede
    , warp >= 3.0