name: memoization-utils
version: 0.1.0.0
synopsis: Utilities for memoizing functions
-- description:
homepage: http://github.com/yamadapc/haskell-memoization-utils
license: MIT
license-file: LICENSE
author: Pedro Tacla Yamada
maintainer: tacla.yamada@gmail.com
copyright: Copyright (c) 2015 Pedro Tacla Yamada
category: Control
build-type: Simple
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Control.Memoization.Utils
build-depends: base >= 4.7 && < 5
, containers >= 0.5.6.2
, lrucache > 1.2 && < 1.3
, time >= 1.4 && < 1.6
, time-units > 1 && < 2
default-language: Haskell2010
test-suite hspec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, time-units > 1 && < 2
, time
, hspec
, memoization-utils
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/yamadapc/haskell-memoization-utils