forked from michaelschade/hs-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstripe.cabal
40 lines (38 loc) · 1.65 KB
/
stripe.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
Name: stripe
Version: 0.2
Synopsis: A Haskell implementation of the Stripe API.
Description: This is an implementation of the Stripe API as it is
documented at https://stripe.com/docs/api
License: BSD3
License-file: LICENSE
Author: Spearhead Development, L.L.C.
Maintainer: Michael Schade <[email protected]>
Copyright: (c) 2011 Spearhead Development, L.L.C.
Category: Web
Build-type: Simple
Extra-source-files: README.mkd
Cabal-version: >=1.6
Library
-- Modules exported by the library.
ghc-options: -Wall -fwarn-tabs
Hs-Source-Dirs: src
Exposed-modules: Web.Stripe.Card
, Web.Stripe.Charge
, Web.Stripe.Client
, Web.Stripe.Coupon
, Web.Stripe.Customer
, Web.Stripe.Plan
, Web.Stripe.Subscription
, Web.Stripe.Token
, Web.Stripe.Utils
Build-depends: base >= 3 && < 5
, text == 0.11.*
, aeson >= 0.6
, unordered-containers >= 0.1.4.6
, time >= 1.0
, http-conduit >= 1.4.1.2
, http-types >= 0.6.11
, bytestring >= 0.9
, mtl >= 2.1
, utf8-string >= 0.3.7
extensions: OverloadedStrings, TupleSections