-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprosper.cabal
50 lines (45 loc) · 1.22 KB
/
prosper.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
name: prosper
version: 0.1.2
synopsis: Bindings to the Prosper marketplace API
description: Bindings to the Prosper marketplace API
homepage: https://api.prosper.com
bug-reports: https://github.com/WraithM/prosper/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/prosper
library
exposed-modules:
Prosper,
Prosper.Account,
Prosper.Listing,
Prosper.User,
Prosper.Note,
Prosper.Money,
Prosper.Commands,
Prosper.Invest,
Prosper.Internal.Request,
Prosper.Internal.JSON,
Prosper.Internal.CSV
build-depends:
base >=4.7 && <4.9,
transformers >=0.4 && <0.5,
text >=1.2 && <1.3,
bytestring >=0.10 && <0.11,
mtl >=2.2 && <2.3,
containers >=0.5 && <0.6,
vector,
aeson,
cereal,
io-streams,
HsOpenSSL,
http-streams
hs-source-dirs: src
default-language: Haskell2010