From e3f2bfdafa33fb798da9cab4406f31d1a5e48743 Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Sun, 8 Nov 2015 06:29:14 +0100 Subject: [PATCH] Use more regular semver suggestion This is the same as using ^, which is a bit nicer than ~ imho, and is the default for a reason :) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4d4bd49..06864fe 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ sudo make install ###### Cargo.toml ```rust [dependencies] -rocksdb = "~0.2.0" +rocksdb = "0.2.0" ``` ###### Code ```rust