packages feed

cached-traversable-0.1.0.0: cached-traversable.cabal

name:                cached-traversable
version:             0.1.0.0
synopsis:            Transparent, persistent caching of lazy, traversable structures
description:
  cached-traversable provides persistent (on-disk) caching of lazy, traversable
  structures for any element type which has a Binary instance. Think of it as
  a poor man's acid-state for deterministic programs.
license:             BSD3
license-file:        LICENSE
author:              Thomas Tuegel
maintainer:          ttuegel@gmail.com
copyright:           2014 Thomas Tuegel
category:            Data
build-type:          Simple
cabal-version:       >=1.8

source-repository head
  type: git
  location: https://github.com/ttuegel/cached-traversable.git

library
  exposed-modules:
    Data.Traversable.Cached
  build-depends:
    base >=4.6 && <5,
    mtl ==2.1.*,
    binary ==0.5.*,
    bytestring ==0.10.*,
    containers ==0.5.*,
    directory ==1.2.*,
    filepath ==1.3.*
  hs-source-dirs: src