forked from teequoo/haskell-stellar-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstellar-sdk.cabal
91 lines (86 loc) · 2.21 KB
/
stellar-sdk.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: stellar-sdk
version: 0.2.0.0
synopsis: A library to use as SDK for the Stellar payment network.
description: This library provides functions to interact with the Stellar payment network via a Horizon server. It support querying the network, as well as building, signing and submitting transactions.
category: API
homepage: https://github.com/teequoo/stellar-sdk#readme
bug-reports: https://github.com/teequoo/stellar-sdk/issues
author: teequoo
maintainer: teequoo
license: Apache-2.0
build-type: Simple
extra-source-files:
CHANGELOG.md
LICENSE.md
package.yaml
README.md
stack.yaml
source-repository head
type: git
location: https://github.com/teequoo/stellar-sdk
library
exposed-modules:
Network.ONCRPC.XDR
Network.ONCRPC.XDR.Array
Network.ONCRPC.XDR.Cabal
Network.ONCRPC.XDR.Generate
Network.ONCRPC.XDR.Opaque
Network.ONCRPC.XDR.Parse
Network.ONCRPC.XDR.Reident
Network.ONCRPC.XDR.Serial
Network.ONCRPC.XDR.Specification
Network.ONCRPC.XDR.Types
Network.Stellar.Asset
Network.Stellar.Builder
Network.Stellar.Horizon
Network.Stellar.Keypair
Network.Stellar.Network
Network.Stellar.Operation
Network.Stellar.Query
Network.Stellar.Signature
Network.Stellar.TransactionXdr
other-modules:
Paths_stellar_sdk
hs-source-dirs:
library
ghc-options: -Wall
build-depends:
Cabal
, SHA
, aeson
, base
, base32
, base64-bytestring
, bytestring
, cereal
, containers
, crypton
, ed25519
, filepath
, haskell-src-exts
, parsec
, req
, text
, vector
default-language: GHC2021
test-suite stellar-sdk-test-suite
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_stellar_sdk
hs-source-dirs:
test-suite
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
build-depends:
HUnit
, base
, bytestring
, hspec
, stellar-sdk
, tasty
, tasty-hspec
default-language: GHC2021