-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.yaml
More file actions
66 lines (66 loc) · 1.21 KB
/
package.yaml
File metadata and controls
66 lines (66 loc) · 1.21 KB
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
name: json-rpc
version: 1.1.2
synopsis: Fully-featured JSON-RPC 2.0 library
description: Please see the README on GitHub at <https://github.com/jprupp/json-rpc#readme>
category: Network
author: JP Rupp
maintainer: jprupp@protonmail.ch
license: MIT
license-file: LICENSE
github: jprupp/json-rpc.git
extra-source-files:
- README.md
- CHANGELOG.md
dependencies:
- base >=4.6 && <5
- aeson
- attoparsec-aeson
- bytestring
- conduit
- conduit-extra
- monad-logger
- mtl
- stm-conduit
- text
- time
- unliftio
- unordered-containers
- vector
- QuickCheck
library:
source-dirs: src
ghc-options: -Wall
exposed-modules:
- Network.JSONRPC
dependencies:
- attoparsec
- deepseq
- hashable
tests:
test-json-rpc:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- json-rpc
- hspec
executables:
concurrent-client:
main: examples/concurrent-client.hs
dependencies:
- json-rpc
concurrent-server:
main: examples/concurrent-server.hs
dependencies:
- json-rpc
time-client:
main: examples/time-client.hs
dependencies:
- json-rpc
time-server:
main: examples/time-server.hs
dependencies:
- json-rpc