packages feed

hash-store-0.1.0: hash-store.cabal

name:                hash-store
version:             0.1.0
description:         Hash as cache
synopsis:            Hash as cache
homepage:            https://github.com/kowainik/hash-store
bug-reports:         https://github.com/kowainik/hash-store/issues
license:             MPL-2.0
license-file:        LICENSE
author:              Kowainik, Vladislav Zavialov
maintainer:          xrom.xkov@gmail.com
copyright:           2018 Kowainik
category:            Hash, File
build-type:          Simple
extra-doc-files:     README.md
                   , CHANGELOG.md
cabal-version:       2.0
tested-with:         GHC == 8.2.2
                   , GHC == 8.4.3

source-repository head
  type:                git
  location:            https://github.com/kowainik/hash-store.git

library
  hs-source-dirs:      src
  exposed-modules:     HashStore

  ghc-options:         -Wall
  build-depends:       base >= 4.9 && < 5
                     , base16-bytestring
                     , blake2
                     , bytestring >= 0.10
                     , directory >= 1.3
                     , filepath >= 1.4

  default-language:    Haskell2010