opam-version: "2.0"
maintainer: "unixjunkie@sdf.org"
authors: ["Francois BERENGER"]
homepage: "https://github.com/UnixJunkie/phashtbl"
bug-reports: "https://github.com/UnixJunkie/phashtbl/issues"
dev-repo: "git+https://github.com/UnixJunkie/phashtbl.git"
license: "LGPL-2.0-or-later"
build: [
  ["jbuilder" "build" "-p" name "-j" jobs]
]
depends: [
  "ocaml"
  "jbuilder"
  "dbm"
]
synopsis: "Persistent hash table library using dbm under the carpet."
description: """
Thin layer on top of the dbm library (in opam) to provide modules
providing a subset of the functionalities of the stdlib's Hashtbl module.

The four modules provided and their find functions are:

val Phashtbl.GenKeyToGenVal.find: ('a, 'b) t -> 'a -> 'b
val Phashtbl.StrKeyToGenVal.find: 'b t -> string -> 'b
val Phashtbl.GenKeyToStrVal.find: 'a t -> 'a -> string
val Phashtbl.StrKeyToStrVal.find: t -> string -> string

The stdlib's Marshal module is used for serialization/deserialization
to/from strings."""
url {
  src: "https://github.com/UnixJunkie/phashtbl/archive/v1.0.0.tar.gz"
  checksum: "md5=59f043a78b76063bac46bd9704252a89"
}
