From a7f36e53b8067c093cd7c1d2874e428c66b93978 Mon Sep 17 00:00:00 2001 From: Ceri Storey Date: Mon, 29 Feb 2016 11:50:24 +0000 Subject: [PATCH] Export WriteOptions. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 9d27965..8b774f4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -16,7 +16,7 @@ pub use ffi as rocksdb_ffi; pub use ffi::{DBCompactionStyle, DBComparator, new_bloom_filter}; pub use rocksdb::{DB, DBIterator, DBVector, Direction, IteratorMode, Writable, WriteBatch}; -pub use rocksdb_options::{BlockBasedOptions, Options}; +pub use rocksdb_options::{BlockBasedOptions, Options, WriteOptions}; pub use merge_operator::MergeOperands; pub mod rocksdb; pub mod ffi;