-
Notifications
You must be signed in to change notification settings - Fork 0
/
lendingclub.cabal
45 lines (42 loc) · 1.22 KB
/
lendingclub.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
name: lendingclub
version: 0.1.1
synopsis: Bindings for the LendingClub marketplace API
description: Bindings for the LendingClub marketplace API
homepage: https://www.lendingclub.com/developers/lc-api.action
bug-reports: https://github.com/WraithM/lendingclub/issues
license: BSD3
license-file: LICENSE
author: Matthew Wraith
maintainer: [email protected]
copyright: (c) 2015 Matthew Wraith
category: Finance
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/WraithM/lendingclub
library
exposed-modules:
LendingClub,
LendingClub.Account,
LendingClub.Listing,
LendingClub.Note,
LendingClub.Authorization,
LendingClub.Money,
LendingClub.Commands,
LendingClub.Invest,
LendingClub.Internal.JSON
build-depends:
base >=4.7 && <4.9,
text >=1.2 && <1.3,
bytestring >=0.10 && <0.11,
mtl >=2.2 && <2.3,
aeson,
scientific,
vector,
io-streams,
HsOpenSSL,
http-streams,
blaze-builder
hs-source-dirs: src
default-language: Haskell2010