blob: 4092b828fdf19ef4df3256573bc587a0600f8498 (
plain)
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
|
cabal-version: 2.0
name: integer-gmp
version: 1.1
synopsis: Integer library based on GMP
license: BSD3
license-file: LICENSE
author: Herbert Valerio Riedel
maintainer: hvr@gnu.org
category: Numeric, Algebra
build-type: Simple
description:
This package used to provide an implementation of the standard 'Integer'
type based on the
<http://gmplib.org/ GNU Multiple Precision Arithmetic Library (GMP)>.
.
It is now deprecated in favor of the 'ghc-bignum' package.
.
Its purpose is to provide backward compatibility for codes directly
depending on the `integer-gmp` package.
library
default-language: Haskell2010
hs-source-dirs: src/
ghc-options: -Wall
build-depends:
base >= 4.11 && < 5
, ghc-prim
exposed-modules:
GHC.Integer.GMP.Internals
|