packages feed

servant-proto-lens-0.1.0.0: servant-proto-lens.cabal

name:                servant-proto-lens
version:             0.1.0.0
synopsis:            servant API Content-Type instances for use with proto-lens generated modules
license:             BSD3
license-file:        LICENSE
author:              PLR
maintainer:          plredmond@gmail.com
category:            Web
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Servant.API.ContentTypes.Proto
  build-depends:       base >=4.10 && <4.11
                     , bytestring
                     , http-media
                     , proto-lens
                     , servant
  default-language:    Haskell2010

test-suite servant-proto-lens-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       TestServer
                       TestClient
  build-depends:       base >=4.10 && <4.11
                     , HUnit
                     , async
                     , data-default-class
                     , http-client
                     , lens
                     , proto-lens
                     , proto-lens-protobuf-types
                     , servant-client
                     , servant-proto-lens
                     , servant-server
                     , test-framework
                     , test-framework-hunit
                     , warp
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N1
  default-language:    Haskell2010