2018-11-12 21:04:29 +01:00
|
|
|
cabal-version: >=1.10
|
2018-06-26 19:11:28 +02:00
|
|
|
name: servant-conduit
|
2018-11-12 21:04:29 +01:00
|
|
|
version: 0.15
|
2020-01-23 11:31:41 +01:00
|
|
|
x-revision: 3
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2018-06-26 19:11:28 +02:00
|
|
|
synopsis: Servant Stream support for conduit.
|
2018-11-12 21:04:29 +01:00
|
|
|
category: Servant, Web, Enumerator
|
2018-06-26 19:11:28 +02:00
|
|
|
description: Servant Stream support for conduit.
|
2018-11-12 21:04:29 +01:00
|
|
|
.
|
|
|
|
Provides 'ToSourceIO' and 'FromSourceIO' instances for 'ConduitT'.
|
|
|
|
|
2019-03-02 10:08:03 +01:00
|
|
|
homepage: http://docs.servant.dev/
|
2018-11-12 21:04:29 +01:00
|
|
|
bug-reports: http://github.com/haskell-servant/servant/issues
|
2018-06-26 19:11:28 +02:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
2019-02-27 17:13:35 +01:00
|
|
|
copyright: 2018-2019 Servant Contributors
|
2018-06-26 19:11:28 +02:00
|
|
|
build-type: Simple
|
|
|
|
tested-with:
|
|
|
|
GHC ==8.0.2
|
|
|
|
|| ==8.2.2
|
|
|
|
|| ==8.4.4
|
2019-09-07 10:46:11 +02:00
|
|
|
|| ==8.6.5
|
2020-01-21 15:52:20 +01:00
|
|
|
|| ==8.8.2
|
2018-06-26 19:11:28 +02:00
|
|
|
|
2018-11-12 21:04:29 +01:00
|
|
|
extra-source-files:
|
|
|
|
CHANGELOG.md
|
|
|
|
|
2018-06-26 19:11:28 +02:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: http://github.com/haskell-servant/servant-conduit.git
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: Servant.Conduit
|
|
|
|
build-depends:
|
|
|
|
base >=4.9 && <5
|
2018-11-09 18:04:47 +01:00
|
|
|
, bytestring >=0.10.8.1 && <0.11
|
|
|
|
, conduit >=1.3.1 && <1.4
|
|
|
|
, mtl >=2.2.2 && <2.3
|
|
|
|
, resourcet >=1.2.2 && <1.3
|
2020-01-23 11:31:41 +01:00
|
|
|
, servant >=0.15 && <0.18
|
2020-05-07 01:15:07 +02:00
|
|
|
, unliftio-core >=0.1.2.0 && <0.3
|
2018-06-26 19:11:28 +02:00
|
|
|
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 -rtsopts -threaded
|
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, base-compat
|
|
|
|
, bytestring
|
|
|
|
, conduit
|
|
|
|
, http-media
|
|
|
|
, resourcet
|
|
|
|
, servant
|
|
|
|
, servant-conduit
|
2020-01-23 11:31:41 +01:00
|
|
|
, servant-server >=0.15 && <0.18
|
|
|
|
, servant-client >=0.15 && <0.18
|
2018-11-09 18:04:47 +01:00
|
|
|
, wai >=3.2.1.2 && <3.3
|
2019-12-15 00:12:05 +01:00
|
|
|
, warp >=3.2.25 && <3.4
|
2018-06-26 19:11:28 +02:00
|
|
|
, http-client
|
|
|
|
default-language: Haskell2010
|