File: integer-gmp.cabal

package info (click to toggle)
ghc 9.0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 177,780 kB
  • sloc: haskell: 494,441; ansic: 70,262; javascript: 9,423; sh: 8,537; python: 2,646; asm: 1,725; makefile: 1,333; xml: 196; cpp: 167; perl: 143; ruby: 84; lisp: 7
file content (32 lines) | stat: -rw-r--r-- 935 bytes parent folder | download
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
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
    , ghc-bignum

  exposed-modules:
    GHC.Integer.GMP.Internals