Crates.io | gnudbm |
lib.rs | gnudbm |
version | 0.2.5 |
source | src |
created_at | 2018-02-20 20:36:30.242143 |
updated_at | 2021-06-24 16:25:19.859796 |
description | Ergonomic bindings for gdbm |
homepage | |
repository | https://github.com/cmyr/gnudbm.git |
max_upload_size | |
id | 52119 |
size | 3,678,873 |
See the documentation for details.
This project provides ergonomic and idiomatic Rust bindings to gdbm,
a lightweight local key/value database. It allows easy storage and retrieval
of any type that implements Serialize
and Deserialize
.
By default, this package includes a recent gdbm and builds it as a static lib.
If you would like to link against the system gdbm, ensure it is up to date
(1.14+) and build with the system-gdbm
feature.
First, add the following to your Cargo.toml
:
[dependencies]
gnudbm = "0.2.3"
And to your crate root:
extern crate gnudbm;