8 releases

Uses old Rust 2015

0.2.2 Aug 3, 2023
0.2.1 Mar 9, 2023
0.2.0 Jan 18, 2023
0.1.5 Nov 6, 2017

#1738 in Development tools

Download history 11/week @ 2023-12-22 1/week @ 2023-12-29 20/week @ 2024-01-05 13/week @ 2024-01-12 14/week @ 2024-01-19 10/week @ 2024-01-26 11/week @ 2024-02-02 12/week @ 2024-02-09 22/week @ 2024-02-16 33/week @ 2024-02-23 39/week @ 2024-03-01 34/week @ 2024-03-08 25/week @ 2024-03-15 25/week @ 2024-03-22 44/week @ 2024-03-29 17/week @ 2024-04-05

113 downloads per month
Used in 5 crates (4 directly)

BSD-2-Clause

11KB
198 lines

libnv

Crates.io

Rust bindings to libnv and nbpairs.

What's that?

This library is safe rust bindings to FreeBSD's Name/value pairs library (libnv). It's poor's man Map<&str,T> where T could one of a few lucky types.

FreeBSD's libnv is not the same as libnvpair from zfs project and hey aren't binary compatible. This library supports both. I have no intention of having 1:1 mapping with either of the libraries - I only implement what I need in libzetta, however, if you need something feel free to open an issue or send a PR.

Installation

If you have FreeBSD you already have library available in base system. On linux, you will have to figure it out on your own.

libnv is available on crates.io and can be included in your Cargo enabled project like this:

[dependencies]
libnv= "0.4.2"

Usage

Read the docs.


lib.rs:

Rust FFI bindings for FreeBSD's libnv library

These are raw, unsafe FFI bindings. Here be dragons! You probably shouldn't use this crate directly. Instead, you should use the libnv crate.

Dependencies

~0–1.8MB
~37K SLoC