packages feed

lookup-tables-0.1.1.1: lookup-tables.cabal

name:                lookup-tables
version:             0.1.1.1
synopsis:            Statically generate lookup tables using Template Haskell.
description:         This package provides a single Template Haskell
                     function for memoizing a given function by
                     statically generating a lookup table.
homepage:            http://hub.darcs.net/jmcarthur/lookup-tables/issues
license:             ISC
license-file:        LICENSE
author:              Jake McArthur
maintainer:          Jake.McArthur@gmail.com
copyright:           2015 Jacob McArthur
category:            Data
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.LookupTable
  build-depends:       base             >= 4.7 && < 4.9,
                       primitive        >= 0.6 && < 0.7,
                       template-haskell >= 2.9 && < 2.11
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite lookup-tables-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Functions
  build-depends:       base, lookup-tables, tasty, tasty-hunit
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:    Haskell2010

source-repository head
  type:     darcs
  location: http://hub.darcs.net/jmcarthur/lookup-tables

source-repository this
  type:     darcs
  location: http://hub.darcs.net/jmcarthur/lookup-tables
  tag:      v0.1.1.1