packages feed

HasBigDecimal-0.1.1: HasBigDecimal.cabal

name:                HasBigDecimal
version:             0.1.1
synopsis:            A library for arbitrary precision decimal numbers.
description:         A native Haskell implementation of arbitrary precicion decimal numbers, based on Haskell Integers. Inspired by Java BigDecimals

homepage:            https://github.com/thma/HasBigDecimal#readme
license:             Apache-2.0
license-file:        LICENSE
author:              Thomas Mahler
maintainer:          thma@apache.org
copyright:           2018 Thomas Mahler
category:            Math
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.BigDecimal, Data.BigFloating
  build-depends:       base >= 4.7 && < 5
  default-language:    Haskell2010

test-suite HasBigDecimal-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Data.BigDecimalSpec, Data.BigFloatingSpec, Data.TestUtils
  build-depends:       base
                     , HasBigDecimal
                     , hspec
                     , QuickCheck
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/thma/HasBigDecimal