-
Notifications
You must be signed in to change notification settings - Fork 6
/
heroku.cabal
34 lines (28 loc) · 928 Bytes
/
heroku.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
Name: heroku
Version: 0.1.2.3
Synopsis: helpers for deploying to Heroku
Description: currently just a parser for DATABASE_URL
Homepage: https://github.com/gregwebs/haskell-heroku
License: BSD3
License-file: LICENSE
Author: Greg Weber
Maintainer: [email protected]
Category: Web
Build-type: Simple
Cabal-version: >= 1.8
Library
Exposed-modules: Web.Heroku
, Web.Heroku.Postgres
, Web.Heroku.MongoDB
, Web.Heroku.RabbitMQ
Other-modules: Web.Heroku.Internal
Build-depends: base >= 4 && < 5
, text
, network-uri
Test-Suite test
Type: exitcode-stdio-1.0
Main-Is: test.hs
Build-depends: base >= 4 && < 5
, text
, network-uri
, hspec