-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathharpie-numhask.cabal
70 lines (62 loc) · 1.9 KB
/
harpie-numhask.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
cabal-version: 3.0
name: harpie-numhask
version: 0.1.0.1
license: BSD-3-Clause
license-file: LICENSE
copyright: Tony Day (c) 2024
category: math
author: Tony Day
maintainer: tonyday567@gmail.com
homepage: https://github.com/tonyday567/harpie-numhask#readme
bug-reports: https://github.com/tonyday567/harpie-numhask/issues
synopsis: numhask shim for harpie.
description:
This package provides orphans and interface into the [numhask](https://hackage.haskell.org/package/numhask) API for [harpie](https://hackage.haskell.org/package/harpie).
== Usage
>>> {-# LANGUAGE RebindableSyntax #-}
>>> import NumHask.Prelude
>>> import Harpie.Fixed as F
>>> import Harpie.Numhask qualified as N
build-type: Simple
tested-with:
, GHC == 9.10.1
, GHC == 9.6.5
, GHC == 9.8.2
extra-doc-files: ChangeLog.md
source-repository head
type: git
location: https://github.com/tonyday567/harpie-numhask
common ghc-options-stanza
ghc-options:
-Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
common ghc2021-stanza
default-language: GHC2021
library
import: ghc-options-stanza
import: ghc2021-stanza
hs-source-dirs: src
build-depends:
, adjunctions >=4.4.2 && <4.5
, base >=4.14 && <5
, first-class-families >=0.8 && <0.9
, harpie >=0.1.0 && <0.2
, numhask >=0.12 && <0.13
exposed-modules: Harpie.NumHask
test-suite doctests
import: ghc2021-stanza
main-is: doctests.hs
hs-source-dirs: test
build-depends:
, base >=4.14 && <5
, doctest-parallel >=0.3 && <0.4
, harpie-numhask
, prettyprinter >=1.7 && <1.8
default-extensions: RebindableSyntax
ghc-options: -threaded
type: exitcode-stdio-1.0