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

10 lines
116 B

10 years ago
#![allow(non_camel_case_types)]
10 years ago
10 years ago
extern crate libc;
pub use constants::*;
pub use ffi::*;
10 years ago
mod ffi;
mod constants;