forked from lukehoersten/snaplet-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
snaplet-stripe.cabal
42 lines (35 loc) · 1.21 KB
/
snaplet-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
41
42
name: snaplet-stripe
version: 0.2.0
synopsis: Stripe snaplet for the Snap Framework
description: This snaplet contains support for using the Stripe
payment platform with a Snap Framework application.
license: BSD3
author: Luke Hoersten
maintainer: Luke Hoersten <[email protected]>
build-type: Simple
cabal-version: >= 1.6
homepage: https://github.com/LukeHoersten/snaplet-stripe
category: Web, Snap
data-files:
resources/stripe/devel.cfg
source-repository head
type: git
location: https://github.com/LukeHoersten/snaplet-stripe
Library
hs-source-dirs: src
exposed-modules:
Snap.Snaplet.Stripe
build-depends:
base >= 4.4 && < 5,
bytestring >= 0.9.1 && < 0.11,
snap >= 0.13 && < 0.14,
heist >= 0.13 && < 0.14,
text >= 0.11 && < 0.12,
text-format >= 0.3 && < 0.4,
configurator >= 0.2 && < 0.3,
transformers >= 0.3 && < 0.4,
mtl >= 2 && < 3,
xmlhtml >= 0.2 && < 0.3,
stripe >= 0.8 && < 0.9
ghc-options: -Wall -fwarn-tabs -funbox-strict-fields
-fno-warn-orphans -fno-warn-unused-do-bind