-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.yaml
50 lines (50 loc) · 1.06 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
name: api-rpc-pegnet
version: '0.1.1.5'
category: Web
author: Sergey Bushnyak
maintainer: sergey.bushnyak@sigrlami.eu
synopsis: simple json-rpc client for PegNet
description: simple json-rpc client for PegNet integration
copyright: ! 'Copyright: (c) 2019-2021 Sergey Bushnyak'
license: MIT
github: kompendium-ano/pegnetd-haskell-client
extra-source-files:
- README.md
dependencies:
- base >=4.7 && <5
- aeson
- aeson-casing
- text
- time
- http-conduit
- http-client
- http-client-tls
- network
- transformers
- remote-monad
- remote-json
- remote-json-client
- json-alt
- bytestring
library:
source-dirs: src
exposed-modules:
- PegNet.RPC.Api
- PegNet.RPC.Types.Balances
- PegNet.RPC.Types.Issuance
- PegNet.RPC.Types.Rates
- PegNet.RPC.Types.RichEntry
- PegNet.RPC.Types.SyncStatus
- PegNet.RPC.Types.Transaction
- PegNet.RPC.Types.TransactionStatus
tests:
factom-test:
main: Spec.hs
source-dirs: tests
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- api-rpc-pegnet