packages feed

fastmemo-0.1.0.1: fastmemo.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.34.4.
--
-- see: https://github.com/sol/hpack

name:           fastmemo
version:        0.1.0.1
synopsis:       Memoize functions on Generic types
description:    Please see the README on GitHub at <https://github.com/davidspies/fastmemo#readme>
category:       Memoization
homepage:       https://github.com/davidspies/fastmemo#readme
bug-reports:    https://github.com/davidspies/fastmemo/issues
author:         David Spies
maintainer:     dnspies@gmail.com
copyright:      2022 David Spies
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/davidspies/fastmemo

library
  exposed-modules:
      Data.Function.FastMemo
  other-modules:
      Data.Function.FastMemo.ByteString
      Data.Function.FastMemo.Char
      Data.Function.FastMemo.Class
      Data.Function.FastMemo.Instances
      Data.Function.FastMemo.Int
      Data.Function.FastMemo.Integer
      Data.Function.FastMemo.Natural
      Data.Function.FastMemo.Ratio
      Data.Function.FastMemo.Util
      Data.Function.FastMemo.Vector
      Data.Function.FastMemo.Word
      Paths_fastmemo
  hs-source-dirs:
      src
  ghc-options: -Wall
  build-depends:
      base >=4.7 && <4.16
    , bytestring ==0.10.*
    , utf8-string ==1.0.*
    , vector ==0.12.*
  default-language: Haskell2010

test-suite fastmemo-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Examples
      Paths_fastmemo
  hs-source-dirs:
      test
  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      QuickCheck
    , base >=4.7 && <4.16
    , bytestring ==0.10.*
    , fastmemo
    , utf8-string ==1.0.*
    , vector ==0.12.*
  default-language: Haskell2010