From d7c4b3ddb2ed496bb44572367e611c551021ab85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Houl=C3=A9?= Date: Wed, 18 Nov 2015 12:18:55 +0100 Subject: [PATCH] Correct misnamed feature in the README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The README indicated `serde` as the feature corresponding to `serde_json::Value`’s FromSql and ToSql implementations, when it is in fact the `serde_json` feature. The corresponding module documentation gives the right information. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f0044e8..dd72da59 100644 --- a/README.md +++ b/README.md @@ -284,8 +284,9 @@ implementations for `uuid`'s `Uuid` type. [JSON and JSONB](http://www.postgresql.org/docs/9.4/static/datatype-json.html) support is provided optionally by the `rustc-serialize` feature, which adds `ToSql` and `FromSql` implementations for `rustc-serialize`'s `Json` type, and -the `serde` feature, which adds implementations for `serde_json`'s `Value` -type. +the `serde_json` feature, which adds implementations for `serde_json`'s `Value` +type. The `serde` feature provides implementations for the older +`serde::json::Value` type. ### TIMESTAMP/TIMESTAMPTZ/DATE/TIME types