2010-01-09 22:49:06 +00:00
|
|
|
Name: mongoDB
|
2010-01-25 03:20:45 +00:00
|
|
|
Version: 0.2
|
2010-01-09 22:49:06 +00:00
|
|
|
License: MIT
|
2010-01-18 17:55:08 +00:00
|
|
|
Maintainer: Scott Parish <srp@srparish.net>
|
|
|
|
Author: Scott Parish <srp@srparish.net>
|
|
|
|
Copyright: Copyright (c) 2010-2010 Scott Parish
|
2010-01-19 12:03:58 +00:00
|
|
|
homepage: http://github.com/srp/mongoDB
|
2010-01-18 17:55:08 +00:00
|
|
|
Category: Database
|
|
|
|
Synopsis: A driver for MongoDB
|
|
|
|
Description: This driver lets you connect to MongoDB, do inserts,
|
|
|
|
queries, updates, etc. Also has many convience functions
|
|
|
|
inspired by HDBC such as more easily converting between
|
|
|
|
the BsonValue types and native Haskell types.
|
|
|
|
Stability: alpha
|
2010-01-19 06:02:53 +00:00
|
|
|
Build-Depends: base < 5,
|
2010-01-09 22:49:06 +00:00
|
|
|
binary,
|
|
|
|
bytestring,
|
2010-01-11 01:26:50 +00:00
|
|
|
containers,
|
2010-01-18 05:08:14 +00:00
|
|
|
convertible,
|
2010-01-09 22:49:06 +00:00
|
|
|
data-binary-ieee754,
|
2010-01-11 03:23:33 +00:00
|
|
|
network,
|
|
|
|
random,
|
2010-01-09 22:49:06 +00:00
|
|
|
time,
|
2010-02-02 21:06:53 +00:00
|
|
|
utf8-string,
|
2010-02-06 20:49:39 +00:00
|
|
|
nano-md5
|
2010-01-09 22:49:06 +00:00
|
|
|
Build-Type: Simple
|
2010-01-11 03:23:33 +00:00
|
|
|
Exposed-modules: Database.MongoDB,
|
|
|
|
Database.MongoDB.BSON
|
2010-01-11 03:22:02 +00:00
|
|
|
Other-modules: Database.MongoDB.Util
|
2010-01-19 06:02:53 +00:00
|
|
|
ghc-options: -Wall
|
2010-01-18 05:08:14 +00:00
|
|
|
extensions: FlexibleContexts, FlexibleInstances, MultiParamTypeClasses,
|
|
|
|
TypeSynonymInstances
|
2010-01-19 06:02:53 +00:00
|
|
|
cabal-version: >= 1.4
|