packages feed

AesonBson-0.2.2: AesonBson.cabal

name:          AesonBson
version:       0.2.2
license:       OtherLicense
license-file:  LICENSE
copyright:     CC0
author:        Niklas Hambüchen <mail@nh2.me> & Andras Slemmer <0slemi0@gmail.com>
maintainer:    Niklas Hambüchen <mail@nh2.me>
category:      Data
build-type:    Simple
stability:     experimental
tested-With:   GHC==7.4.2
cabal-version: >= 1.8
homepage:      https://github.com/nh2/AesonBson
bug-Reports:   https://github.com/nh2/AesonBson/issues
synopsis:      Mapping between Aeson's JSON and Bson objects.
description:   This package lets you convert between Aeson's JSON and Bson objects.

data-files:
  CHANGELOG


source-repository head
  type:      git
  location:  git://github.com/nh2/AesonBson.git


library
  exposed-modules:
    Data.AesonBson
    Data.AesonBson.Instances
  build-depends:
    base < 5,
    aeson >= 0.3 && < 0.7,
    attoparsec >= 0.10,
    bson >= 0.2,
    unordered-containers >= 0.1.3.0,
    vector >= 0.7.1
  hs-source-dirs: .
  ghc-options: -Wall



test-Suite tests
  type: exitcode-stdio-1.0
  hs-source-dirs:
    test
  main-is:
    Main.hs
  build-depends:
    base < 5,
    AesonBson,
    aeson,
    bson,
    hspec >= 1.7.2.1,
    HUnit >= 1.2.5.2,
    text >= 0.11.3.1
  ghc-options: -Wall