Correct misnamed feature in the README

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.
This commit is contained in:
Tom Houlé 2015-11-18 12:18:55 +01:00
parent 329de1c0e6
commit d7c4b3ddb2

View File

@ -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