filecache-0.5.2: filecache.cabal
name: filecache
version: 0.5.2
synopsis: A cache system associating values to files.
description: A cache system, that works by associating computation results with file names. When the files are modified, the cache entries are discarded.
homepage: http://lpuppet.banquise.net/
license: BSD3
license-file: LICENSE
author: Simon Marechal
maintainer: bartavelle@gmail.com
copyright: Simon Marechal
category: Data
build-type: Simple
cabal-version: >=1.10
bug-reports: https://github.com/bartavelle/filecache/issues
tested-with: GHC == 9.8.2 || ==9.6.6
source-repository head
type: git
location: git://github.com/bartavelle/filecache.git
test-suite simpletest
hs-source-dirs: tests
type: exitcode-stdio-1.0
ghc-options: -Wall -rtsopts -threaded -with-rtsopts=-N
build-depends: base, filecache, temporary, directory, containers, stm, hspec, filepath
main-is: simpletest.hs
default-language: Haskell2010
library
exposed-modules: Data.FileCache Data.FileCache.Internal
ghc-options: -Wall
default-language: Haskell2010
hs-source-dirs: src
-- other-modules:
build-depends: base >= 4.6 && < 5
, containers >= 0.5 && < 0.8
, directory >= 1.2 && < 1.4
, fsnotify >= 0.4 && < 0.5
, strict-base-types >= 0.2.2
, mtl >= 2.1 && < 2.4
, exceptions >= 0.8 && < 0.11
, filepath >= 1.4 && < 1.6
, time >= 1.5 && < 2
, stm