Safe Rust bindings for LMDB with encryption at rest
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lmdb-rs/lmdb-sys/src/lib.rs

14 lines
278 B

#![allow(dead_code, uppercase_variables, non_camel_case_types)]
#![feature(plugin)]
10 years ago
#[plugin]
extern crate bindgen;
10 years ago
extern crate libc;
use libc::{size_t, mode_t};
pub use constants::*;
10 years ago
mod constants;
10 years ago
bindgen!("../mdb/libraries/liblmdb/lmdb.h", match="lmdb.h", link="lmdb");