This repository has been archived by the owner on Dec 17, 2023. It is now read-only.
forked from bflyblue/servant-event-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
servant-event-stream.cabal
61 lines (52 loc) · 1.73 KB
/
servant-event-stream.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
cabal-version: >=1.10
name: servant-event-stream
version: 0.2.1.0
stability: alpha
synopsis: Servant support for Server-Sent events
category: Servant, Web
description: This library adds necessary type combinators to support
Server Sent Events within Servant ecosystem.
homepage: https://github.com/bflyblue/servant-event-stream
bug-reports: https://github.com/bflyblue/servant-event-stream/issues
license: BSD3
license-file: LICENSE
author: Shaun Sharples
maintainer: [email protected]
copyright: (c) 2021 Shaun Sharples
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/bflyblue/servant-event-stream.git
library
exposed-modules:
Servant.API.EventStream
default-extensions:
MultiParamTypeClasses
OverloadedStrings
build-depends:
base >= 4.10 && < 4.15
, binary >= 0.7 && < 0.11
, http-media >= 0.7.1.3 && < 0.9
, lens >= 4.17 && < 4.20
, pipes >= 4.3.9 && < 4.4
, servant-foreign >= 0.15 && < 0.16
, servant-js >= 0.9.4 && < 0.10
, servant-pipes >= 0.15 && < 0.16
, servant-server >= 0.15 && < 0.19
, text >= 1.2.3 && < 1.3
, wai-extra >= 3.0 && < 3.2
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite tests-default
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
tests
default-language:
Haskell2010
build-depends:
base