-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-streamly.cabal
83 lines (77 loc) · 2.26 KB
/
servant-streamly.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack
--
-- hash: 87bb59a3d82f450cf1f16ac14ef62f1042e0294ef743909c7ca5e4f1b755678f
name: servant-streamly
version: 0.1.0.0
synopsis: Servant Stream support for streamly.
description: Servant Stream support for streamly. Provides 'ToSourceIO' and 'FromSourceIO' instances for all 'IsStream' instances.
category: Web, Servant, Streamly
homepage: https://github.com/blackheaven/servant-streamly#readme
bug-reports: https://github.com/blackheaven/servant-streamly/issues
author: Gautier DI FOLCO
maintainer: [email protected]
copyright: Gautier DI FOLCO
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/blackheaven/servant-streamly
library
exposed-modules:
Servant.Streamly
other-modules:
Paths_servant_streamly
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, resourcet >=1.2.4.2 && <1.3
, servant >=0.16 && <0.20
, streamly >=0.7.2 && <0.9
default-language: Haskell2010
executable servant-streamly-example
main-is: Main.hs
other-modules:
Paths_servant_streamly
hs-source-dirs:
example
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, bytestring >=0.10.10.0 && <0.11
, http-client >=0.6.4.1 && <0.7
, resourcet >=1.2.4.2 && <1.3
, servant
, servant-client >=0.16 && <0.20
, servant-server >=0.16 && <0.20
, servant-streamly
, streamly
, streamly-bytestring >=0.1.2 && <0.2
, wai >=3.2.2.1 && <3.3
, warp >=3.3.13 && <3.4
default-language: Haskell2010
test-suite servant-streamly-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Servant.StreamlySpec
Paths_servant_streamly
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, hspec >=2.7.1 && <2.8
, resourcet >=1.2.4.2 && <1.3
, servant >=0.16 && <0.20
, servant-server
, servant-streamly
, streamly >=0.7.2 && <0.9
default-language: Haskell2010