-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdollaridoos.cabal
More file actions
34 lines (32 loc) · 1.12 KB
/
dollaridoos.cabal
File metadata and controls
34 lines (32 loc) · 1.12 KB
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
name: dollaridoos
version: 0.2.0.0
license: BSD3
license-file: LICENSE
author: George Wilson
maintainer: george@wils.online
copyright: Copyright (c) 2017, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230.
synopsis: A newtype for monetary values
description: A newtype for money with appropriate operations defined and no nonsensical instances
homepage: https://github.com/qfpl/dollaridoos
bug-reports: https://github.com/qfpl/dollaridoos/issues
cabal-version: 1.18
category: Finance
build-type: Simple
tested-with:
GHC ==9.6.7 || ==9.8.4 || ==9.10.2 || ==9.12.2
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/qfpl/dollaridoos.git
library
exposed-modules: Data.Money
other-extensions: RankNTypes
ghc-options: -Wall
build-depends:
base >= 4.5 && < 5
, profunctors >= 4 && < 6
, semigroups >= 0.8.4 && < 1
hs-source-dirs: src
default-language: Haskell2010