forked from reflex-frp/reflex-gadt-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
reflex-gadt-api.cabal
71 lines (62 loc) · 2.19 KB
/
reflex-gadt-api.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
cabal-version: >=1.10
name: reflex-gadt-api
version: 0.2.2.1
synopsis: Interact with a GADT API in your reflex-dom application.
description:
This package is designed to be used in full-stack Haskell applications where the API is defined as a GADT and the frontend is using reflex-dom.
bug-reports: https://github.com/reflex-frp/reflex-gadt-api/issues
license: BSD3
license-file: LICENSE
author: Obsidian Systems
maintainer: maintainer@obsidian.systems
copyright: 2020 Obsidian Systems LLC
category: FRP, API, network
build-type: Simple
extra-source-files:
ChangeLog.md
Readme.md
tested-with: GHC ==8.6.5 || ==8.8.1 || ==8.10.7
library
hs-source-dirs: src, .
build-depends:
aeson >=1.4.4 && <2.3
, aeson-gadt-th >=0.2.4 && <0.3
, base >=4.12 && <4.20
, bytestring >=0.10.8 && <0.13
, constraints-extras >=0.3.0 && <0.5
, containers >=0.6 && <0.7
, data-default >=0.6 && <0.8
, jsaddle >=0.9.7 && <0.10
, reflex >=0.7 && <1
, reflex-dom-core >=0.7.0 && <0.9
, some >=1 && <1.1
, text >=1.2 && <2.2
, time >=1.6.0 && <2
exposed-modules:
Reflex.Dom.GadtApi
Reflex.Dom.GadtApi.WebSocket
Reflex.Dom.GadtApi.XHR
Readme
default-language: Haskell2010
ghc-options: -Wall
executable readme
build-depends:
aeson
, aeson-gadt-th
, base
, constraints-extras
, reflex-dom-core
, reflex-gadt-api
, text
, time
-- We don't actually need this dependency, but omitting it can cause issues
-- when an older dependent-sum is used (from before the some package was
-- split out). Since this is already a transitive dependency, this seems
-- like the simplest solution.
, dependent-sum >=0.7 && <0.8
default-language: Haskell2010
main-is: Readme.lhs
ghc-options: -Wall -optL -q -main-is Readme.main
source-repository head
type: git
location: git://github.com/reflex-frp/reflex-gadt-api.git