2022-01-04 22:06:23 +01:00
|
|
|
cabal-version: 2.2
|
2018-06-26 19:11:28 +02:00
|
|
|
name: servant-pipes
|
2021-06-23 23:38:46 +02:00
|
|
|
version: 0.15.3
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2018-06-26 19:11:28 +02:00
|
|
|
synopsis: Servant Stream support for pipes
|
2018-11-12 21:04:29 +01:00
|
|
|
category: Servant, Web, Pipes
|
2018-06-26 19:11:28 +02:00
|
|
|
description: Servant Stream support for pipes.
|
2018-11-12 21:04:29 +01:00
|
|
|
.
|
|
|
|
Provides 'ToSourceIO' and 'FromSourceIO' instances for 'Proxy' and 'SafeT'.
|
|
|
|
|
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
|
2021-10-31 22:37:56 +01:00
|
|
|
license: BSD-3-Clause
|
2018-06-26 19:11:28 +02:00
|
|
|
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
|
2021-10-02 12:56:23 +02:00
|
|
|
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.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
|
2022-03-01 09:34:45 +01:00
|
|
|
location: http://github.com/haskell-servant/servant.git
|
2018-06-26 19:11:28 +02:00
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules: Servant.Pipes
|
|
|
|
build-depends:
|
|
|
|
base >=4.9 && <5
|
2020-12-16 11:04:49 +01:00
|
|
|
, bytestring >=0.10.8.1 && <0.12
|
2018-06-26 19:11:28 +02:00
|
|
|
, pipes >=4.3.9 && <4.4
|
|
|
|
, pipes-safe >=2.3.1 && <2.4
|
2018-11-09 18:04:47 +01:00
|
|
|
, mtl >=2.2.2 && <2.3
|
2018-06-26 19:11:28 +02:00
|
|
|
, monad-control >=1.0.2.3 && <1.1
|
2022-01-31 15:13:47 +01:00
|
|
|
, servant >=0.15 && <0.20
|
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
|
|
|
|
, http-media
|
|
|
|
, servant
|
2022-01-04 22:06:23 +01:00
|
|
|
, pipes
|
2018-06-26 19:11:28 +02:00
|
|
|
, pipes-safe
|
|
|
|
, servant-pipes
|
2018-11-09 18:04:47 +01:00
|
|
|
, pipes-bytestring >=2.1.6 && <2.2
|
2022-01-31 15:13:47 +01:00
|
|
|
, servant-server >=0.15 && <0.20
|
|
|
|
, servant-client >=0.15 && <0.20
|
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
|