-
Notifications
You must be signed in to change notification settings - Fork 5
/
natural.cabal
54 lines (50 loc) · 1.99 KB
/
natural.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
-- documentation, see http://haskell.org/cabal/users-guide/
name: natural
version: 0.3.0.6
synopsis: Natural number
description:
<<https://system-f.gitlab.io/logo/systemf-450x450.jpg>>
.
Natural number
license: BSD3
license-file: LICENCE
author: Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
maintainer: Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
copyright: Copyright (C) 2020 System F
category: Control
build-type: Simple
extra-source-files: changelog.md
cabal-version: >=1.10
homepage: https://github.com/system-f/natural
bug-reports: https://github.com/system-f/natural/issues
tested-with: GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1, GHC == 8.8.1, GHC == 8.6.5, GHC == 8.10.1
source-repository head
type: git
location: git@github.com:system-f/natural.git
library
exposed-modules: Natural
build-depends: base >=4.8 && <5
, lens >=4.15 && <5.2
, semigroupoids >= 5 && <6
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
if impl(ghc<8.0.1)
build-depends: semigroups >= 0.9 && <6
test-suite tests
build-depends: QuickCheck >=2.9.2 && <2.15
, base >=4.8 && <5
, checkers >=0.4.6 && <0.6
, natural
, hedgehog >=0.5 && <1.1
, lens >=4.15 && <5.2
, tasty >=0.11 && <1.3
, tasty-hunit >=0.9 && <0.11
, tasty-hedgehog >= 0.1 && <1.1
, tasty-quickcheck >=0.8.4 && <0.11
, transformers >=0.4.1 && <0.6
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test
default-language: Haskell2010
ghc-options: -Wall