stuff to make into a package

This commit is contained in:
Scott R. Parish 2010-01-09 16:49:06 -06:00
parent 5c5ec38413
commit 06391f5992
3 changed files with 23 additions and 1 deletions

View file

@ -1,4 +1,12 @@
module Database.MongoDB.BSON
(
BSValue(..),
BSONObject,
toBSONObject,
fromBSONObject,
BinarySubType(..)
)
where
import Control.Monad
import Data.Binary
import Data.Binary.Get

3
Setup.lhs Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env runhaskell
> import Distribution.Simple
> main = defaultMain

11
mongoDB.cabal Normal file
View file

@ -0,0 +1,11 @@
Name: mongoDB
Version: 0.1
License: MIT
Build-Depends: base,
binary,
bytestring,
data-binary-ieee754,
time,
utf8-string
Build-Type: Simple
Exposed-modules: Database.MongoDB.BSON