From 672970c09806c9205268ddd5b0c69b01564546e2 Mon Sep 17 00:00:00 2001 From: Thomas Tanon Date: Sat, 24 Jul 2021 08:58:51 +0200 Subject: [PATCH] Makes rocksdb requirement more flexible Allows to relase a patch version without breaking hard rocksdb requirements in dependencies --- lib/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Cargo.toml b/lib/Cargo.toml index bafb7281..51793582 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -22,7 +22,7 @@ sophia = ["sophia_api"] http_client = ["httparse", "native-tls"] [dependencies] -rocksdb = { version = "0.17", optional = true } +rocksdb = { version = ">=0.15,<0.18", optional = true } sled = { version = "0.34", optional = true } quick-xml = "0.22" rand = "0.8"