This project provides ergonomic and idiomatic Rust bindings to [gdbm], a lightweight local key/value database.
brew
install gdbm
; on other platforms you may need to build [from source].First, add the following to your Cargo.toml
:
toml
[dependencies]
gnudbm = "0.1.0"
And to your crate root:
rust
extern crate gnudbm;
See the [API documentation] for details.