1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
Name: lrucache
Version: 1.2.0.0
Synopsis: a simple, pure LRU cache
License: BSD3
License-file: LICENSE
Author: Carl Howells
Maintainer: chowells79@gmail.com
Copyright: Carl Howells, 2010-2015
Homepage: http://github.com/chowells79/lrucache
Stability: Experimental
Category: Data
Build-type: Simple
Description:
This package contains a simple, pure LRU cache, implemented in
terms of "Data.Map".
.
It also contains a mutable IO wrapper providing atomic updates to
an LRU cache.
Extra-source-files:
LICENSE
README
MemTest.hs
OpTest.hs
Setup.hs
changes.txt
Cabal-version: >=1.6
Source-repository this
type: git
location: https://github.com/chowells79/lrucache.git
tag: 1.2.0.0
Library
Exposed-modules:
Data.Cache.LRU
Data.Cache.LRU.Internal
Data.Cache.LRU.IO
Data.Cache.LRU.IO.Internal
Build-depends:
base >= 4 && < 5,
containers >= 0.2 && < 0.6,
contravariant >= 0.5 && < 2
GHC-options: -Wall -O2
HS-source-dirs: src
|