From 9a516989b10667abd8aa95ae9a31d756e7977f04 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Aug 2020 05:55:10 +0000 Subject: [PATCH] Update rocksdb requirement from 0.14 to 0.15 Updates the requirements on [rocksdb](https://github.com/rust-rocksdb/rust-rocksdb) to permit the latest version. - [Release notes](https://github.com/rust-rocksdb/rust-rocksdb/releases) - [Changelog](https://github.com/rust-rocksdb/rust-rocksdb/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-rocksdb/rust-rocksdb/compare/v0.14.0...v0.15.0) Signed-off-by: dependabot[bot] --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index f8502d69..b34a114a 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -20,7 +20,7 @@ default = [] sophia = ["sophia_api"] [dependencies] -rocksdb = { version = "0.14", optional = true } +rocksdb = { version = "0.15", optional = true } sled = { version = "0.34", optional = true } quick-xml = "0.18" rand = "0.7"