-
Notifications
You must be signed in to change notification settings - Fork 6
/
servant-event-stream.cabal
51 lines (45 loc) · 1.25 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
cabal-version: >=1.10
name: servant-event-stream
version: 0.3.0.1
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: shaun.sharples@gmail.com
copyright: (c) 2024 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.20,
bytestring >=0.11.1.0 && <0.13,
http-media >=0.7.1.3 && <0.9,
lens >=4.17 && <5.4,
servant-foreign >=0.15 && <0.17,
servant-server >=0.15 && <0.21,
text >=1.2.3 && <2.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