packages feed

vault-0.2.0.0: vault.cabal

Name:               vault
Version:            0.2.0.0
Synopsis:           a persistent store for values of arbitrary types
Description:
  A /vault/ is a persistent store for values of arbitrary types.
  It's like having first-class access to the storage space behind IORefs.
  .
  The data structure is analogous to a bank vault,
  where you can access different bank boxes with different keys;
  hence the name.
  .
  Also provided is a /locker/ type, representing a store for a single element.
  
Category:           Data
License:            BSD3
License-file:       LICENSE
Author:             Heinrich Apfelmus, Elliott Hird
Maintainer:         Heinrich Apfelmus <apfelmus at quantentunnel de>
Homepage:           https://github.com/HeinrichApfelmus/vault
Copyright:          (c) Heinrich Apfelmus 2011

build-type:         Simple
cabal-version:      >= 1.6

extra-source-files: Readme.md

source-repository head
    type:           git
    location:       git://github.com/HeinrichApfelmus/vault.git

Library
    hs-source-dirs:     src
    build-depends:      base == 4.*, containers == 0.4.*
    if impl(ghc)
        build-depends:  unordered-containers >= 0.2.1.0 && < 0.3,
                        hashable == 1.1.*

    ghc-options:        -Wall
    extensions:         CPP
    exposed-modules:
                        Data.Vault,
                        Data.Vault.ST,
                        Data.Unique.Really
    other-modules:
                        Data.Vault.ST_GHC,
                        Data.Vault.ST_Pure