-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.yaml
103 lines (87 loc) · 2.59 KB
/
package.yaml
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: cdp
version: 0.0.2.0
synopsis: A library for the Chrome Devtools Protocol
description:
"
A library for the Chrome Devtools Protocol (CDP).
It provides access to Chrome, enabling tasks such as printing a page or opening a tab.
Chrome Devtools Protocol: <https://chromedevtools.github.io/devtools-protocol/>
README: <https://github.com/arsalan0c/cdp-hs>
Examples: <https://github.com/arsalan0c/cdp-hs/examples>
"
author: Arsalan Cheema
maintainer: Arsalan Cheema
github: arsalan0c/cdp-hs
category: Package.Category
license: BSD-3-Clause
verbatim:
cabal-version: 3.0
extra-doc-files:
- README.md
library:
source-dirs:
- src
- gen
dependencies:
- aeson >= 1.5.6 && < 3
- base >= 4.14.3 && < 4.17
- bytestring >= 0.10.12 && < 0.12
- containers >= 0.6.4 && < 0.7
- text >= 1.2.4 && < 1.3
- random >= 1.2.0 && < 1.3
- mtl >= 2.2.2 && < 2.3
- vector >= 0.12.3 && < 0.13
- data-default >= 0.7.1 && < 0.8
- directory >= 1.3.6 && < 1.4
- filepath >= 1.4.2 && < 1.5
- extra >= 1.7.9 && < 1.8
- process >= 1.6.13 && < 1.7
- http-conduit >= 2.3.8 && < 2.4
- network-uri >= 2.6.4 && < 2.7
- monad-loops >= 0.4.3 && < 0.5
- websockets >= 0.12.7 && < 0.13
executables:
cdp-gen:
source-dirs: gen
main: Main.hs
default-extensions:
- Strict
cdp-example-print-page:
source-dirs: examples
main: print-page.hs
dependencies:
- cdp
- base64-bytestring >= 1.1.0 && < 1.3
cdp-example-subscribe:
source-dirs: examples
main: subscribe.hs
dependencies:
- cdp
cdp-example-open-twitter:
source-dirs: examples
main: open-twitter.hs
dependencies:
- cdp
cdp-example-endpoints:
source-dirs: examples
main: endpoints.hs
dependencies:
- cdp
- blaze-html >= 0.9.1 && < 0.10
- blaze-markup >= 0.8.2 && < 0.9
- utf8-string >= 1.0.2 && < 1.1
cdp-example-sessions:
source-dirs: examples
main: sessions.hs
dependencies:
- cdp
tests:
cdp-test:
source-dirs: test
main: Main.hs
ghc-options:
- -Wall
- -threaded
dependencies:
- cdp
- hspec