packages feed

caching-vault-0.1.0.0: caching-vault.cabal

cabal-version: 1.12

-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: d045485a8c1101cb9c1d54251cc48c42e544e597c1ec7c06b0e0a5850a78ddc8

name:           caching-vault
version:        0.1.0.0
synopsis:       A vault-style cache implementation
description:    Allows a central cache for arbitrary values with expiry dates
category:       Data
homepage:       https://github.com/agrafix/caching-vault#readme
bug-reports:    https://github.com/agrafix/caching-vault/issues
author:         Alexander Thiemann
maintainer:     Alexander Thiemann <mail@thiemann.at>
copyright:      2021 Alexander Thiemann
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/agrafix/caching-vault

library
  exposed-modules:
      Data.Cache.Vault
  other-modules:
      Paths_caching_vault
  hs-source-dirs:
      src
  default-extensions: OverloadedStrings DataKinds TypeOperators TypeFamilies GADTs FlexibleInstances FlexibleContexts MultiParamTypeClasses StrictData ScopedTypeVariables DeriveGeneric DeriveFunctor
  ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates
  build-depends:
      base >=4.7 && <5
    , stm
    , stm-containers
    , text
    , time
  default-language: Haskell2010

test-suite caching-vault-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_caching_vault
  hs-source-dirs:
      test
  default-extensions: OverloadedStrings DataKinds TypeOperators TypeFamilies GADTs FlexibleInstances FlexibleContexts MultiParamTypeClasses StrictData ScopedTypeVariables DeriveGeneric DeriveFunctor
  ghc-options: -Wall -fwarn-tabs -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , caching-vault
    , hspec
    , stm
    , stm-containers
    , text
    , time
    , timespan
  default-language: Haskell2010