stuff to make into a package
This commit is contained in:
parent
5c5ec38413
commit
06391f5992
3 changed files with 23 additions and 1 deletions
|
@ -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
3
Setup.lhs
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env runhaskell
|
||||
> import Distribution.Simple
|
||||
> main = defaultMain
|
11
mongoDB.cabal
Normal file
11
mongoDB.cabal
Normal 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
|
Loading…
Reference in a new issue