-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhmpfr.cabal
75 lines (63 loc) · 2.31 KB
/
hmpfr.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
cabal-version: 3.0
name: hmpfr
version: 0.4.5
synopsis: Haskell binding to the MPFR library
description:
Haskell binding to the MPFR library.
.
The library includes both a pure and a mutable interface.
The mutable interface should have a lot less overhead
than the pure one.
.
Some simple examples of usage can be found in demo/Demo.hs.
category: Data, Math
license: BSD-3-Clause
license-file: LICENSE
Stability: experimental
Tested-with:
GHC==9.0.2
GHC==9.2.5
GHC==9.4.3
author: Aleš Bizjak, Michal Konečný
maintainer: Michal Konečný <[email protected]>
Homepage: https://github.com/michalkonecny/hmpfr
build-type: Simple
Extra-source-files: demo/Demo.hs
Data-files:
README.md
dict.txt
ChangeLog
source-repository head
type: git
location: https://github.com/michalkonecny/hmpfr
Library
build-Depends: base >= 4.8 && < 5
Exposed-modules:
Data.Number.MPFR.FFIhelper
Data.Number.MPFR.Internal
Data.Number.MPFR.Mutable.Internal
Data.Number.MPFR.Mutable.Arithmetic
Data.Number.MPFR.Mutable.Special
Data.Number.MPFR.Mutable.Integer
Data.Number.MPFR.Mutable.Misc
Data.Number.MPFR.Assignment
Data.Number.MPFR.Conversion
Data.Number.MPFR.Arithmetic
Data.Number.MPFR.Comparison
Data.Number.MPFR.Special
Data.Number.MPFR.Integer
Data.Number.MPFR.Misc
Data.Number.MPFR.Instances.Near
Data.Number.MPFR.Instances.Up
Data.Number.MPFR.Instances.Down
Data.Number.MPFR.Instances.Zero
Data.Number.MPFR
Data.Number.MPFR.Mutable
GHC-options: -Wall -fno-warn-orphans
hs-source-dirs: src
include-dirs: cbits
includes: mpfr.h
install-includes: chsmpfr.h
c-sources: cbits/chsmpfr.c
extra-libraries: mpfr
default-language: Haskell2010