name: reified-records version: 0.1.0.0 synopsis: Reify records to Maps and back again description: This package provides a pair of functions @reify@ and @reflect@ to allow records to be manipulated dynamically as @Map@s. Currently this works using @Data.Data@ however in future this will likely change to @GHC.Generics@ and allow more user hooks into how types are reified and reflected. This package is meant to be a useful tool in writing serialization libraries for JSON and similar. license: MIT license-file: LICENSE author: Danny Gratzer maintainer: danny.gratzer@gmail.com category: Generics build-type: Simple cabal-version: >=1.10 library exposed-modules: Data.Generics.Reify.Record other-extensions: DeriveDataTypeable build-depends: base >=4.6 && <4.7, containers >=0.5 && <0.6, mtl >=2.1 && <2.2 hs-source-dirs: src default-language: Haskell2010