2010-01-09 22:49:06 +00:00
|
|
|
Name: mongoDB
|
2010-06-15 03:14:40 +00:00
|
|
|
Version: 0.5.0
|
2010-01-09 22:49:06 +00:00
|
|
|
License: MIT
|
2010-06-15 03:14:40 +00:00
|
|
|
Maintainer: Scott Parish <srp@srparish.net>, Tony Hannan <tony@10gen.com>
|
|
|
|
Author: Scott Parish <srp@srparish.net>, Tony Hannan <tony@10gen.com>
|
|
|
|
Copyright: Copyright (c) 2010-2010 Scott Parish & 10gen Inc.
|
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
|
2010-03-14 04:09:38 +00:00
|
|
|
Description: This module lets you connect to MongoDB, do inserts,
|
2010-01-18 17:55:08 +00:00
|
|
|
queries, updates, etc. Also has many convience functions
|
|
|
|
inspired by HDBC such as more easily converting between
|
2010-06-15 03:14:40 +00:00
|
|
|
the Bson.Value types and native Haskell types.
|
2010-01-18 17:55:08 +00:00
|
|
|
Stability: alpha
|
2010-06-15 03:14:40 +00:00
|
|
|
Build-Depends: base < 5,
|
|
|
|
containers,
|
|
|
|
mtl,
|
|
|
|
binary,
|
|
|
|
bytestring,
|
|
|
|
network,
|
|
|
|
nano-md5,
|
|
|
|
parsec,
|
|
|
|
bson
|
2010-01-09 22:49:06 +00:00
|
|
|
Build-Type: Simple
|
2010-06-15 03:14:40 +00:00
|
|
|
Exposed-modules:
|
|
|
|
Database.MongoDB.Util,
|
|
|
|
Database.MongoDB.Internal.Connection,
|
|
|
|
Database.MongoDB.Internal.Protocol,
|
|
|
|
Database.MongoDB.Connection,
|
|
|
|
Database.MongoDB.Query,
|
|
|
|
Database.MongoDB.Admin,
|
|
|
|
Database.MongoDB
|
2010-03-14 02:43:11 +00:00
|
|
|
ghc-options: -Wall -O2
|
2010-01-19 06:02:53 +00:00
|
|
|
cabal-version: >= 1.4
|