packages feed

safe-money-store-0.1: safe-money-store.cabal

name: safe-money-store
version: 0.1
license: BSD3
license-file: LICENSE
copyright: Copyright (c) Renzo Carbonara 2016-2018
author: Renzo Carbonara
maintainer: renλren!zone
stability: Experimental
tested-with: GHC==8.4.1
homepage: https://github.com/k0001/safe-money
bug-reports: https://github.com/k0001/safe-money/issues
category: Money
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md changelog.md
synopsis: Instances from the store library for the safe-money library.
description:
  This library exports @Store@ instances (from the @store@ library)
  for many of the types exported by the @safe-money@ library.
  .
  Note: The code in this library used to be part of the @safe-money@
  library itself, so these instances are intended to be backwards
  compatible with older versions of @safe-money@.

source-repository head
  type: git
  location: https://github.com/k0001/safe-money

library
  default-language: Haskell2010
  hs-source-dirs: src
  ghc-options: -Wall -O2
  build-depends:
    base >=4.8 && <5.0,
    bytestring,
    safe-money,
    store >=0.2
  exposed-modules:
    Money.Store

test-suite test
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  build-depends:
    base,
    store,
    bytestring,
    safe-money,
    safe-money-store,
    store,
    tasty,
    tasty-hunit,
    tasty-quickcheck,
    text