-
Notifications
You must be signed in to change notification settings - Fork 19
/
money.cabal
46 lines (43 loc) · 1.1 KB
/
money.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
name: money
version: 0.1
license: BSD3
license-file: LICENSE
copyright: Copyright (c) Renzo Carbonara 2016
author: Renzo Carbonara
maintainer: renλren!zone
stability: Experimental
tested-with: GHC==8.0.1
homepage: https://github.com/k0001/haskell-money
bug-reports: https://github.com/k0001/haskell-money/issues
category: Money
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md changelog.md
synopsis: Type-safe encoding and manipulation of world currencies and precious metals.
description: Type-safe encoding and manipulation of world currencies and precious metals.
source-repository head
type: git
location: https://github.com/k0001/haskell-money
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall -O2
exposed-modules:
Data.Money
Data.Money.Internal
build-depends:
base (>=4.5 && <5.0)
, constraints
, text (>=0.11)
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends:
base
, money
, tasty
, tasty-hunit
, tasty-quickcheck
, text