packages feed

peano-0.1.0.3: peano.cabal

cabal-version:       1.18
name:                peano
version:             0.1.0.3
synopsis:            Peano numbers
description:         Lazy unary natural numbers.
license:             BSD3
license-file:        LICENSE
author:              M Farkas-Dyck, Andreas Abel
maintainer:          Andreas Abel
category:            Data, Math
build-type:          Simple

tested-with:
  GHC == 9.14.1
  GHC == 9.12.2
  GHC == 9.10.2
  GHC == 9.8.4
  GHC == 9.6.7
  GHC == 9.4.8
  GHC == 9.2.8
  GHC == 9.0.2
  GHC == 8.10.7
  GHC == 8.8.4
  GHC == 8.6.5
  GHC == 8.4.4
  GHC == 8.2.2
  GHC == 8.0.2

extra-doc-files:
  CHANGELOG.md
  README.md

library
  exposed-modules:     Data.Peano
  default-language:    Haskell2010
  default-extensions:  DeriveDataTypeable
  build-depends:       base >= 4.9 && < 5
  ghc-options:
    -Wall
    -Wcompat

benchmark bench
  type:                exitcode-stdio-1.0
  hs-source-dirs:      bench
  main-is:             Main.hs
  default-language:    Haskell2010
  build-depends:
     base
   , peano
   , tasty-bench
  -- Turn optimization off for the benchmark so that @length . replicate@ is not fused.
  ghc-options:
    -O0

source-repository head
  type:     git
  location: https://github.com/andreasabel/peano.hs