forked from verement/decimal-arithmetic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
decimal-arithmetic.cabal
86 lines (71 loc) · 2.86 KB
/
decimal-arithmetic.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
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 <http://speleotrove.com/decimal/>
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 <[email protected]>
maintainer: Rob Leslie <[email protected]>
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
, caerbannog >= 1.0.0.0 && < 1.1
, 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