forked from haskell-servant/servant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-conduit.cabal
62 lines (56 loc) · 1.8 KB
/
servant-conduit.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
cabal-version: 2.2
name: servant-conduit
version: 0.16.1
synopsis: Servant Stream support for conduit.
category: Servant, Web, Enumerator
description: Servant Stream support for conduit.
.
Provides 'ToSourceIO' and 'FromSourceIO' instances for 'ConduitT'.
homepage: http://docs.servant.dev/
bug-reports: http://github.com/haskell-servant/servant/issues
license: BSD-3-Clause
license-file: LICENSE
author: Servant Contributors
maintainer: [email protected]
copyright: 2018-2019 Servant Contributors
build-type: Simple
tested-with: GHC ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.2 || ==9.10.1
extra-source-files:
CHANGELOG.md
source-repository head
type: git
location: http://github.com/haskell-servant/servant.git
library
exposed-modules: Servant.Conduit
build-depends:
base >= 4.16.4.0 && < 4.21
, bytestring >=0.11 && <0.13
, conduit >=1.3.1 && <1.4
, mtl ^>=2.2.2 || ^>=2.3.1
, resourcet >=1.2.2 && <1.4
, servant >=0.20.2 && <0.21
, unliftio-core >=0.1.2.0 && <0.3
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 >=0.20 && <0.21
, servant-conduit
, servant-server >=0.20.2 && <0.21
, servant-client >=0.20.2 && <0.21
, wai >=3.2.1.2 && <3.3
, warp >=3.2.25 && <3.5
, http-client
default-language: Haskell2010