-
Notifications
You must be signed in to change notification settings - Fork 0
/
hafar.cabal
63 lines (58 loc) · 1.68 KB
/
hafar.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 11f7d969e8f00b5e392eda2b0897debe20363e72178cbd6a8a87a7ab29e2b819
name: hafar
version: 0.1.0.0
synopsis: Affine arithmetic library for Haskell
description: Hafar is an affine arithmetic library for Haskell. It is an efficient way to work with ranges of values or imprecise values.
category: Numeric
homepage: https://github.com/Soupstraw/hafar#readme
bug-reports: https://github.com/Soupstraw/hafar/issues
author: Joosep Jääger
maintainer: Joosep Jääger
copyright: 2019 Joosep Jääger
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/Soupstraw/hafar
library
exposed-modules:
Numeric.AffineForm
Numeric.AffineForm.ExplicitRounding
other-modules:
Numeric.AffineForm.Utils
Numeric.AffineForm.Internal
hs-source-dirs:
src
build-depends:
base >=4.12 && <4.14
, intervals >=0.8 && <0.9
, mtl >=2.2 && <2.3
default-language: Haskell2010
test-suite hafar-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Numeric.AffineForm
Numeric.AffineForm.Internal
Numeric.AffineForm.Utils
Numeric.AffineForm.ExplicitRounding
hs-source-dirs:
test
src
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck >=2.13 && <2.14
, base >=4.12 && <4.14
, hafar
, intervals >=0.8 && <0.9
, mtl >=2.2 && <2.3
default-language: Haskell2010