name: decimal-arithmetic version: 0.5.1.0 synopsis: An implementation of the General Decimal Arithmetic Specification description: This package provides an implementation of the General Decimal Arithmetic Specification by Mike Cowlishaw. . For details, see homepage: https://github.com/verement/decimal-arithmetic#readme bug-reports: https://github.com/verement/decimal-arithmetic/issues license: BSD3 license-file: LICENSE copyright: © 2016–2017 Robert Leslie author: Rob Leslie maintainer: Rob Leslie stability: experimental category: Numeric build-type: Simple cabal-version: >=1.10 extra-source-files: README.md TODO stack.yaml source-repository head type: git location: https://github.com/verement/decimal-arithmetic.git library hs-source-dirs: src exposed-modules: Numeric.Decimal Numeric.Decimal.Arithmetic Numeric.Decimal.Conversion Numeric.Decimal.Encoding Numeric.Decimal.Operation other-modules: Numeric.Decimal.Exception Numeric.Decimal.Number Numeric.Decimal.Precision Numeric.Decimal.Rounding build-depends: base >= 4.11 && < 5 , binary >= 0.8 && < 0.9 , binary-bits >= 0.5 && < 0.6 , deepseq >= 1.4 && < 1.5 , mtl >= 2.2 && < 2.3 default-language: Haskell2010 default-extensions: Trustworthy other-extensions: FlexibleInstances MultiParamTypeClasses RoleAnnotations test-suite spec type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs other-modules: Arbitrary Numeric.Decimal.EncodingSpec Numeric.Decimal.NumberSpec Numeric.Decimal.OperationSpec build-depends: base , binary , decimal-arithmetic , hspec , QuickCheck ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 test-suite doctests type: exitcode-stdio-1.0 hs-source-dirs: test main-is: doctests.hs build-depends: base , decimal-arithmetic , doctest >= 0.8 , QuickCheck ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010