-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '#2-currencies-from-adt'
- Loading branch information
Showing
6 changed files
with
417 additions
and
944 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
name: currency-codes | ||
version: 2.0.0.0 | ||
version: 3.0.0.0 | ||
synopsis: ISO-4217 Currency Codes | ||
description: ISO-4217 Currency Codes | ||
license: MIT | ||
license-file: LICENSE | ||
author: Chordify | ||
maintainer: Matthias Benkort <matthias@chordify.net> | ||
maintainer: Matthias Benkort <matthias[email protected]> | ||
copyright: (c) 2017 Chordify | ||
category: Data | ||
build-type: Simple | ||
|
@@ -15,30 +15,69 @@ 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: DataKinds | ||
, DeriveDataTypeable | ||
, DeriveFunctor | ||
, DeriveGeneric | ||
, ExistentialQuantification | ||
, FlexibleContexts | ||
, GADTs | ||
, GeneralizedNewtypeDeriving | ||
, MultiParamTypeClasses | ||
, OverloadedStrings | ||
, RecordWildCards | ||
, ScopedTypeVariables | ||
, TupleSections | ||
, TypeOperators | ||
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 |
Oops, something went wrong.