hs-cdb-0.1: hs-cdb.cabal
name:hs-cdb
version:0.1
License:BSD3
License-File:LICENSE
Author:Adam Smith
Maintainer:Adam Smith
Homepage:http://github.com/adamsmasher/hs-cdb
Category:Database
Synopsis: A library for reading CDB (Constant Database) files.
Description:
A library for reading CDB (Constant Database) files.
.
CDB files are immutable key-value stores, designed for extremely fast and
memory-efficient construction and lookup. They can be as large as 4GB, and
at no point in their construction or use must all data be loaded into
memory. CDB files can contain multiple values for a given key.
.
For more information on the CDB file format, please see:
<http://cr.yp.to/cdb.html>
cabal-version: >= 1.6
build-type:Simple
Library
Build-Depends:array, base >= 4 && < 5, bytestring, bytestring-mmap, directory,
filepath, haskell98, mtl
Exposed-modules:
Database.CDB
Database.CDB.Packable
Database.CDB.Read
Database.CDB.Util
Database.CDB.Write
source-repository head
type: git
location: git://github.com/adamsmasher/hs-cdb.git