-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinteger.cabal
35 lines (30 loc) · 936 Bytes
/
integer.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
cabal-version: 2.4
name: integer
homepage: https://github.com/exordium/integer
version: 0.1.0.0
category: Prelude
synopsis: GMP Integers
description: In the style of classless. Needs GMP 5+
stability: cursed
bug-reports: https://github.com/exordium/integer/issues
author: Dai
maintainer: [email protected]
copyright: 2020 Sodality
license: MIT
extra-source-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/exordium/integer
library
default-language: Haskell2010
default-extensions: MagicHash, UnboxedTuples
, KindSignatures, PolyKinds, ConstraintKinds, TypeOperators, RankNTypes
, BlockArguments, UnicodeSyntax
, PatternSynonyms, ViewPatterns
, PackageImports
hs-source-dirs: src
exposed-modules: Z, Big.N, Big.N.Bit, Word
other-modules: Prelude
build-depends: integer-gmp, microbase, prim