packages feed

servant-zeppelin-server-0.1.0.1: servant-zeppelin-server.cabal

name: servant-zeppelin-server
version: 0.1.0.1
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2017 Martin Allen, Ben Weitzman
maintainer: martin[dot]allen26[at]gmail.co
homepage: https://github.com/martyall/servant-zeppelin#readme
synopsis: Server library for servant-zeppelin combinators.
category: Web
author: Martin Allen, Ben Weitzman
extra-source-files:
    README.md

source-repository head
    type: git
    location: https://github.com/martyall/servant-zeppelin

library
    exposed-modules:
        Servant.Zeppelin.Server
    build-depends:
        base >=4.7 && <5,
        aeson >=1.0.2.1 && <1.1,
        http-types >=0.9.1 && <0.10,
        singletons ==2.2.*,
        servant ==0.10.*,
        servant-server ==0.10.*,
        servant-zeppelin >=0.1.0.2 && <0.2,
        text >=1.2.2.1 && <1.3,
        wai >=3.2.1.1 && <3.3
    default-language: Haskell2010
    default-extensions: GADTs FlexibleInstances FlexibleContexts
                        KindSignatures DataKinds TypeOperators TypeInType TypeFamilies
                        MultiParamTypeClasses FunctionalDependencies PolyKinds
                        ScopedTypeVariables TypeInType TypeApplications
                        UndecidableInstances OverloadedStrings
    hs-source-dirs: src
    other-modules:
        Servant.Zeppelin.Server.Internal.Zeppelin
        Servant.Zeppelin.Server.Internal.Types
        Servant.Zeppelin.Server.Internal.ContentTypes
        Servant.Zeppelin.Server.Internal
    ghc-options: -Wall

test-suite servant-zeppelin-server-test
    type: exitcode-stdio-1.0
    main-is: Spec.hs
    build-depends:
        base >=4.9.1.0 && <4.10,
        hspec >=2.4.3 && <2.5,
        aeson >=1.0.2.1 && <1.1,
        http-client >=0.5.6.1 && <0.6,
        http-types >=0.9.1 && <0.10,
        mtl >=2.2.1 && <2.3,
        lens >=4.15.1 && <4.16,
        lens-aeson >=1.0.1 && <1.1,
        servant ==0.10.*,
        servant-server ==0.10.*,
        servant-zeppelin >=0.1.0.2 && <0.2,
        servant-zeppelin-server >=0.1.0.1 && <0.2,
        string-conversions >=0.4.0.1 && <0.5,
        wreq >=0.5.0.1 && <0.6,
        QuickCheck >=2.9.2 && <2.10,
        warp >=3.2.11.2 && <3.3
    default-language: Haskell2010
    hs-source-dirs: test
    other-modules:
        Servant.Zeppelin.ZeppelinSpec
    ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N