packages feed

composable-associations-0.1.0.0: composable-associations.cabal

name:                composable-associations
version:             0.1.0.0
synopsis:            Types and helpers for composing types into a single larger key-value type.
description:
    A library providing generic types and helpers for composing types together into a a single key-value type.
    .
    This is useful when a normalized data model has a denormalized serialization format. Using this libraries types and
    functions you build compose your data into the denormalized key-value format needed for serialization. Other
    libraries provide concrete implementations for a given serialization format.
homepage:            https://github.com/SamProtas/composable-associations#readme
license:             BSD3
license-file:        LICENSE
author:              Sam Protas
maintainer:          sam.protas@gmail.com
copyright:           2017 Samuel Protas
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.ComposableAssociation
  build-depends:       base >= 4.7 && < 5
  default-language:    Haskell2010

test-suite tests
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends: base >= 4.7 && < 5
               , composable-associations
               , lens
               , tasty
               , tasty-hunit

source-repository head
  type:     git
  location: https://github.com/SamProtas/composable-associations/tree/master/composable-associations