buffer-builder-aeson: Serialize Aeson values with Data.BufferBuilder

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

Warnings:

A very fast BufferBuilder-based JSON encoder for Aeson.

The whole library is a a single orphan instance for Aeson.Value.

import Data.Aeson (object, (.=), Value (..))
import Data.BufferBuilder.Json (encodeJson)
import Data.BufferBuilder.Aeson ()
import qualified Data.ByteString as BS

stuff :: Value
stuff = Array
    [ object
        [ "name" .= ("eggs" :: String)
        , "price" .= (3.141592 :: Double)
        ]
    , object
        [ "name" .= ("cheese" :: String)
        , "price" .= (0.57721 :: Double)
        ]
    ]

main :: IO ()
main = do
    BS.putStrLn $ encodeJson stuff

Properties

Versions 0.1.0.1, 0.2.0.0, 0.2.0.0, 0.2.0.3, 0.2.0.4, 0.2.0.5
Change log None available
Dependencies aeson, base (>=4.6 && <4.8), buffer-builder (>=0.2.0.0), bytestring, integer-gmp, scientific, unordered-containers, vector [details]
License MIT
Author Andy Friesen, Chad Austin
Maintainer andy.friesen@gmail.com
Category Data
Source repo this: git clone https://github.com/andyfriesen/buffer-builder-aeson(tag 0.2.0.0)
Uploaded by afriesen at 2015-02-22T03:46:54Z

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees