Improved cabal-file readability
This commit is contained in:
parent
dd6a3010f6
commit
8a02b8056e
1 changed files with 48 additions and 69 deletions
117
mongoDB.cabal
117
mongoDB.cabal
|
@ -1,69 +1,48 @@
|
||||||
name: mongoDB
|
Name: mongoDB
|
||||||
version: 1.2.0
|
Version: 1.3.0
|
||||||
build-type: Simple
|
Synopsis: Driver (client) for MongoDB, a free, scalable, fast, document
|
||||||
license: OtherLicense
|
DBMS
|
||||||
license-file: LICENSE
|
Description: This package lets you connect to MongoDB servers and
|
||||||
copyright: Copyright (c) 2010-2012 10gen Inc.
|
update/query their data. Please see the example in
|
||||||
author: Tony Hannan
|
Database.MongoDB and the tutorial from the homepage. For
|
||||||
maintainer: Tony Hannan <tonyhannan@gmail.com>
|
information about MongoDB itself, see www.mongodb.org.
|
||||||
build-depends:
|
Category: Database
|
||||||
array -any,
|
Homepage: http://github.com/TonyGen/mongoDB-haskell
|
||||||
base <5,
|
Author: Tony Hannan
|
||||||
binary -any,
|
Maintainer: Tony Hannan <tonyhannan@gmail.com>
|
||||||
bson-text -any,
|
Copyright: Copyright (c) 2010-2012 10gen Inc.
|
||||||
text,
|
License: OtherLicense
|
||||||
bytestring -any,
|
License-file: LICENSE
|
||||||
containers -any,
|
Cabal-version: >= 1.2
|
||||||
mtl >= 2,
|
Build-type: Simple
|
||||||
cryptohash -any,
|
Stability: alpha
|
||||||
network -any,
|
|
||||||
parsec -any,
|
Library
|
||||||
random -any,
|
GHC-options: -Wall
|
||||||
random-shuffle -any,
|
GHC-prof-options: -auto-all
|
||||||
monad-control >= 0.3.1,
|
|
||||||
lifted-base >= 0.1.0.3,
|
Build-depends: array -any
|
||||||
transformers-base >= 0.4.1
|
, base <5
|
||||||
stability: alpha
|
, binary -any
|
||||||
homepage: http://github.com/TonyGen/mongoDB-haskell
|
, bson -any
|
||||||
package-url:
|
, text
|
||||||
bug-reports:
|
, bytestring -any
|
||||||
synopsis: Driver (client) for MongoDB, a free, scalable, fast, document DBMS
|
, containers -any
|
||||||
description: This package lets you connect to MongoDB servers and update/query their data. Please see the example in Database.MongoDB and the tutorial from the homepage. For information about MongoDB itself, see www.mongodb.org.
|
, mtl >= 2
|
||||||
category: Database
|
, cryptohash -any
|
||||||
tested-with:
|
, network -any
|
||||||
data-files:
|
, parsec -any
|
||||||
data-dir: ""
|
, random -any
|
||||||
extra-source-files:
|
, random-shuffle -any
|
||||||
extra-tmp-files:
|
, monad-control >= 0.3.1
|
||||||
exposed-modules:
|
, lifted-base >= 0.1.0.3
|
||||||
Database.MongoDB
|
, transformers-base >= 0.4.1
|
||||||
Database.MongoDB.Admin
|
|
||||||
Database.MongoDB.Connection
|
Exposed-modules: Database.MongoDB
|
||||||
Database.MongoDB.Internal.Protocol
|
Database.MongoDB.Admin
|
||||||
Database.MongoDB.Internal.Util
|
Database.MongoDB.Connection
|
||||||
Database.MongoDB.Query
|
Database.MongoDB.Internal.Protocol
|
||||||
System.IO.Pipeline
|
Database.MongoDB.Internal.Util
|
||||||
System.IO.Pool
|
Database.MongoDB.Query
|
||||||
exposed: True
|
System.IO.Pipeline
|
||||||
buildable: True
|
System.IO.Pool
|
||||||
build-tools:
|
|
||||||
cpp-options:
|
|
||||||
cc-options:
|
|
||||||
ld-options:
|
|
||||||
pkgconfig-depends:
|
|
||||||
frameworks:
|
|
||||||
c-sources:
|
|
||||||
extensions:
|
|
||||||
extra-libraries:
|
|
||||||
extra-lib-dirs:
|
|
||||||
includes:
|
|
||||||
install-includes:
|
|
||||||
include-dirs:
|
|
||||||
hs-source-dirs: .
|
|
||||||
other-modules:
|
|
||||||
ghc-prof-options: -auto-all
|
|
||||||
ghc-shared-options:
|
|
||||||
ghc-options: -Wall
|
|
||||||
hugs-options:
|
|
||||||
nhc98-options:
|
|
||||||
jhc-options:
|
|
||||||
|
|
Loading…
Reference in a new issue