From 4d4a140f9eb7d1ff564d40889813a5cc0350a2cd Mon Sep 17 00:00:00 2001 From: Ceri Storey Date: Wed, 24 Feb 2016 11:25:05 +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 b2233b3..0e013aa 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, Writable, WriteBatch, IteratorMode}; -pub use rocksdb_options::{BlockBasedOptions, Options}; +pub use rocksdb_options::{BlockBasedOptions, Options, WriteOptions}; pub use merge_operator::MergeOperands; pub mod rocksdb; pub mod ffi;