packages feed

servant-dhall-0.1: servant-dhall.cabal

name:                servant-dhall
version:             0.1
synopsis:            Servant Dhall content-type
description:
  Servant Dhall bindings.
  . 
  Provides @MineRender@ and @MimeUnrender@ instances.
  So you can accept and return Dhall expressions.
  .
  /Note:/ Reading (and evaluating) Dhall expressions from untrust4ed source is a security risk.
homepage:            http://haskell-servant.readthedocs.org/
license:             BSD3
license-file:        LICENSE
author:              Servant Contributors
maintainer:          haskell-servant-maintainers@googlegroups.com
copyright:           2015-2016 Servant Contributors
category:            Web, Servant, Dhall
build-type:          Simple
cabal-version:       >=1.10
bug-reports:         http://github.com/haskell-servant/servant-dhall/issues
tested-with:
  GHC==8.0.2,
  GHC==8.2.2,
  GHC==8.4.3

source-repository head
  type: git
  location: http://github.com/haskell-servant/servant-dhall.git

library
  exposed-modules:     Servant.Dhall
  build-depends:       base          >=4.9      && <4.12
                     , base-compat   >=0.10.1   && <0.11
                     , bytestring    >=0.10.4.0 && <0.11
                     , dhall         >=1.14.0   && <1.15
                     , formatting    >=6.3.4    && <6.4
                     , megaparsec    >=6.5.0    && <6.6
                     , prettyprinter >=1.2.0.1  && <1.3
                     , servant       >=0.13     && <0.14
                     , text          >=1.2.3.0  && <1.3
                     , http-media
  hs-source-dirs:      src
  default-language:    Haskell2010
  ghc-options: -Wall

test-suite example
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
    example
  ghc-options: -Wall
  build-depends:
      base
    , base-compat
    , bytestring
    , dhall
    , http-media
    , servant
    , servant-dhall
    , servant-server >=0.12     && <0.15
    , wai            >=3.0.3.0  && <3.3
    , warp           >=3.0.13.1 && <3.3
  default-language: Haskell2010