name:           fixedprec
-- Don't forget to update the ChangeLog
version:        0.2.1.1
license:        BSD3
cabal-version:  >= 1.8
build-type:	Simple
license-file:   LICENSE
copyright:	Copyright (c) 2013-2014 Peter Selinger
author:         Peter Selinger
maintainer:     selinger@mathstat.dal.ca
stability:	beta
category:       Data, Math
synopsis:       A fixed-precision real number type
description:
  A reasonably efficient implementation of arbitrary-but-fixed precision
  real numbers. This is inspired by, and partly based on,
  Data.Number.Fixed and Data.Number.CReal, but more efficient.
bug-reports:    mailto:selinger@mathstat.dal.ca

extra-source-files: ChangeLog

library
  build-depends:
    base >= 3 && < 5, random ==1.0.*

  exposed-modules:
    Data.Number.FixedPrec

  ghc-options:
    -Wall
    -fno-warn-name-shadowing
    -fno-warn-unused-matches
    -fno-warn-type-defaults

  ghc-prof-options:
    -prof -auto-all