packages feed

servant-zeppelin-server-0.1.0.3: servant-zeppelin-server.cabal

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

library
  hs-source-dirs:      src
  exposed-modules:     Servant.Zeppelin.Server
  other-modules:       Servant.Zeppelin.Server.Internal.Zeppelin
                     , Servant.Zeppelin.Server.Internal.Types
                     , Servant.Zeppelin.Server.Internal.ContentTypes
                     , Servant.Zeppelin.Server.Internal

  ghc-options: -Wall

  build-depends:       base >= 4.7 && < 5
                     , aeson >=0.7 && <1.3
                     , http-types >=0.8 && <0.10
                     , singletons >= 2.2 && <2.3
                     , servant >= 0.10 && <0.12
                     , servant-server >= 0.10
                     , servant-zeppelin >= 0.1 && <0.2
                     , text == 1.2.*
                     , wai >=3.0 && <3.3
  default-language:    Haskell2010

  default-extensions:  GADTs
                     , FlexibleInstances
                     , FlexibleContexts
                     , KindSignatures
                     , DataKinds
                     , TypeOperators
                     , TypeInType
                     , TypeFamilies
                     , MultiParamTypeClasses
                     , FunctionalDependencies
                     , PolyKinds
                     , ScopedTypeVariables
                     , TypeInType
                     , TypeApplications
                     , UndecidableInstances
                     , OverloadedStrings

test-suite servant-zeppelin-server-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , hspec
                     , aeson
                     , http-client
                     , http-types
                     , mtl
                     , lens
                     , lens-aeson
                     , servant
                     , servant-server
                     , servant-zeppelin
                     , servant-zeppelin-server
                     , string-conversions
                     , wreq
                     , QuickCheck
                     , warp
  ghc-options:         -Wall -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010
  other-modules:       Servant.Zeppelin.ZeppelinSpec

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