packages feed

aeson-smart-0.1.0.0: aeson-smart.cabal

name:                aeson-smart
version:             0.1.0.0
synopsis:            Smart derivation of Aeson instances
description:         aeson-smart generates ToJSON instances that ignore fields
                     with Nothing values and FromJSON instances that ignore
                     extra fields and fill in missing fields with their
                     defaults, should they have a Default instance.
                     Constructors without parameters have strings of their 
                     constructor name as JSON representations.
homepage:            https://github.com/lassoinc/aeson-smart
license:             MIT
author:              Sam Anklesaria
maintainer:          amsay@amsay.net
-- copyright:           
category:            Web
build-type:          Simple
cabal-version:       >=1.8
source-repository head
  type:     git
  location: git://github.com/lassoinc/aeson-smart.git

library
  exposed-modules:     Data.Aeson.TH.Smart, Data.Default.TH
  -- other-modules:       
  build-depends:       base ==4.5.*, aeson ==0.6.*, data-default ==0.4.*, unordered-containers ==0.2.*, template-haskell ==2.7.*, text ==0.11.*, vector ==0.9.*