-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
66 lines (61 loc) · 1.45 KB
/
package.yaml
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
name: haspara
version: 0.0.0.10
github: "telostat/haspara"
license: MIT
license-file: LICENSE.md
author: "Vehbi Sinan Tunalioglu"
maintainer: "[email protected]"
copyright: "Copyright (c) 2021-2024 Telostat Pte Ltd"
category: Finance
synopsis: A library providing definitions to work with monetary values.
description: Please see the README on GitHub at <https://github.com/telostat/haspara#readme>
extra-source-files:
- README.md
- LICENSE.md
- CHANGELOG.md
dependencies:
- base >= 4.11 && < 5
library:
source-dirs: src
ghc-options:
- -Wall
- -Wunused-packages
dependencies:
- aeson >=1.5.6.0 && <2.3
- containers >=0.6.4.1 && <0.7
- data-default >= 0.7 && <0.8
- exceptions >=0.10.4 && <0.11
- hashable >=1.3.0.0 && <1.5
- megaparsec >=9.0.1 && <9.6
- mtl >=2.2.2 && <2.4
- refined >=0.6.3 && <0.9
- safe-decimal >=0.2.1.0 && <0.3
- scientific >=0.3.7.0 && <0.4
- template-haskell >=2.16.0.0 && <2.21
- text >=1.2.4.1 && <2.2
- time >=1.9.3 && <1.14
tests:
haspara-test:
main: Spec.hs
source-dirs: test/spec
ghc-options:
- -Wall
- -Wunused-packages
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- containers
- data-default
- haspara
- hspec
- time
haspara-doctest:
main: doctest.hs
source-dirs: test/doctest
ghc-options:
- -Wall
- -threaded
dependencies:
- haspara
- doctest