From 6b991a74cd69b0340c7374409ecc1f5e84fae952 Mon Sep 17 00:00:00 2001 From: Nathan Fiedler Date: Sat, 12 Feb 2022 11:06:32 -0800 Subject: [PATCH] chore: update rocksdb to 0.18.0 release Remove unused dev-dependencies cargo test passes --- CHANGELOG.md | 5 +++++ Cargo.toml | 7 ++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea66058..5a5f340 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ This project adheres to [Semantic Versioning](http://semver.org/). This file follows the convention described at [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). +## [2.7.0] - 2022-02-12 +### Changed +- Upgrade to `rust-rocksdb` 0.18.0 release. +- Remove unused dev-dependencies. + ## [2.6.0] - 2021-07-22 ### Changed - Upgrade to `rust-rocksdb` 0.17.0 release. diff --git a/Cargo.toml b/Cargo.toml index f618d54..a0b7a91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mokuroku" -version = "2.6.0" +version = "2.7.0" authors = ["Nathan Fiedler "] edition = "2018" description = "Secondary indices like PouchDB for RocksDB in Rust." @@ -15,13 +15,10 @@ exclude = [ [dependencies] failure = "0.1.8" -rocksdb = "0.17.0" +rocksdb = "0.18.0" [dev-dependencies] -clap = "2.33.3" chrono = { version = "0.4", features = ["serde"] } -crypto-hash = "0.3.4" -memmap = "0.7.0" rand = "0.8.4" serde = { version = "1.0", features = ["derive"] } serde_cbor = "0.11"