forked from chordify/currency-codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurrency-codes.cabal
83 lines (76 loc) · 2.83 KB
/
currency-codes.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
71
72
73
74
75
76
77
78
79
80
81
82
83
name: currency-codes
version: 3.0.0.1
synopsis: ISO-4217 Currency Codes
description: ISO-4217 Currency Codes
license: MIT
license-file: LICENSE
author: Chordify
maintainer: Matthias Benkort <[email protected]>
copyright: (c) 2017-2018 Chordify
category: Data
build-type: Simple
homepage: https://github.com/chordify/currency-codes
bug-reports: https://github.com/chordify/currency-codes/issues
extra-source-files: README.md
CHANGELOG.md
stack.yaml
Setup.hs
.stylish-haskell.yaml
cabal-version: >=1.10
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
default-extensions: BangPatterns
, DefaultSignatures
, DataKinds
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, ExistentialQuantification
, FlexibleContexts
, GADTs
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, OverloadedStrings
, RecordWildCards
, ScopedTypeVariables
, TupleSections
, TypeOperators
build-depends: base >= 4 && < 5
, aeson >= 0.7.0.0
, bson >= 0.2.0
, deepseq
, random >= 1.0.0.0
, safe >= 0.2
, text >= 1.0.0.0
exposed-modules: Data.Currency
test-suite currency-codes-test
hs-source-dirs: test
main-is: Spec.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall
default-extensions: BangPatterns
, DefaultSignatures
, DataKinds
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, ExistentialQuantification
, FlexibleContexts
, GADTs
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, OverloadedStrings
, RecordWildCards
, ScopedTypeVariables
, TupleSections
, TypeOperators
build-depends: base
, currency-codes
, QuickCheck
, aeson
, bson
, hspec
other-modules: Data.CurrencySpec