From cedbf494b4ec11638f1e0b7446731e0b73573352 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Tue, 9 Apr 2024 17:17:35 +0300 Subject: [PATCH] make ffi mod public --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9de4b86..fa367a7 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -133,7 +133,7 @@ pub use crate::{ write_batch::{WriteBatch, WriteBatchIterator, WriteBatchWithTransaction}, }; -use librocksdb_sys as ffi; +pub use librocksdb_sys as ffi; use std::error; use std::fmt;