packages feed

bson-0.2.0: bson.cabal

Name:          bson
Version:       0.2.0
Synopsis:      BSON documents are JSON-like objects with a standard binary
               encoding.
Description:   A BSON Document is an untyped (dynamically type-checked) record.
               I.e. it is a list of name-value pairs, where a Value is a single
               sum type with constructors for basic types (Bool, Int, Float,
               String, and Time), compound types (List, and (embedded) Document),
               and special types (Binary, Javascript, ObjectId, RegEx, and a few
               others).

	           A BSON Document is serialized to a standard binary encoding
               defined at <http://bsonspec.org>. This implements version 1 of
               that spec.
Category:      Data
Homepage:      http://github.com/selectel/bson-haskell
Author:        Tony Hannan
Maintainer:    Fedor Gogolev <knsd@knsd.net>
Copyright:     Copyright (c) 2010-2012 10gen Inc.
License:       OtherLicense
License-file:  LICENSE
Cabal-version: >= 1.8
Build-type:    Simple

Library
  Build-depends:      base < 5
                    , time
                    , bytestring
                    , binary
                    , cryptohash
                    , data-binary-ieee754
                    , mtl >= 2
                    , network
                    , text == 0.11.*

  Exposed-modules:  Data.Bson,
                    Data.Bson.Binary

  GHC-prof-options: -auto-all