changeset 425:8b6ecfd60c85

Bump version -> 0.1.3.
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 20 Oct 2017 20:26:54 +0200
parents 46e7fe14fbab
children 8514c86969b7
files Cargo.toml examples/write-a-lot/src/main.rs
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Cargo.toml	Fri Oct 20 20:07:57 2017 +0200
+++ b/Cargo.toml	Fri Oct 20 20:26:54 2017 +0200
@@ -1,6 +1,6 @@
 [package]
 name = "rusty-leveldb"
-version = "0.1.2"
+version = "0.1.3"
 authors = ["Lewin Bormann <lbo@spheniscida.de>"]
 description = "A compatible re-implementation of LevelDB in Rust"
 repository = "https://bitbucket.org/dermesser/leveldb-rs"
--- a/examples/write-a-lot/src/main.rs	Fri Oct 20 20:07:57 2017 +0200
+++ b/examples/write-a-lot/src/main.rs	Fri Oct 20 20:26:54 2017 +0200
@@ -31,7 +31,7 @@
 
 fn main() {
     let mut opt = Options::default();
-    opt.compression_type = CompressionType::CompressionNone;
+    opt.compression_type = CompressionType::CompressionSnappy;
     let mut db = DB::open("test1", opt).unwrap();
 
     fill_db(&mut db, 32768).unwrap();