@@ -308,35 +308,35 @@ crate.
308308
309309[ UUID] ( http://www.postgresql.org/docs/9.4/static/datatype-uuid.html ) support is
310310provided optionally by the ` with-uuid ` feature, which adds ` ToSql ` and ` FromSql `
311- implementations for ` uuid ` 's ` Uuid ` type.
311+ implementations for ` uuid ` 's ` Uuid ` type. Requires ` uuid ` version 0.5.
312312
313313### JSON/JSONB types
314314
315315[ JSON and JSONB] ( http://www.postgresql.org/docs/9.4/static/datatype-json.html )
316316support is provided optionally by the ` with-rustc-serialize ` feature, which adds
317317` ToSql ` and ` FromSql ` implementations for ` rustc-serialize ` 's ` Json ` type, and
318318the ` with-serde_json ` feature, which adds implementations for ` serde_json ` 's
319- ` Value ` type.
319+ ` Value ` type. Requires ` serde_json ` version 1.0, ` rustc-serialize ` version 0.3.
320320
321321### TIMESTAMP/TIMESTAMPTZ/DATE/TIME types
322322
323323[ Date and Time] ( http://www.postgresql.org/docs/9.1/static/datatype-datetime.html )
324324support is provided optionally by the ` with-time ` feature, which adds ` ToSql `
325325and ` FromSql ` implementations for ` time ` 's ` Timespec ` type, or the ` with-chrono `
326326feature, which adds ` ToSql ` and ` FromSql ` implementations for ` chrono ` 's
327- ` DateTime ` , ` NaiveDateTime ` , ` NaiveDate ` and ` NaiveTime ` types.
327+ ` DateTime ` , ` NaiveDateTime ` , ` NaiveDate ` and ` NaiveTime ` types. Requires ` time ` version 0.1.14.
328328
329329### BIT/VARBIT types
330330
331331[ BIT and VARBIT] ( http://www.postgresql.org/docs/9.4/static/datatype-bit.html )
332332support is provided optionally by the ` with-bit-vec ` feature, which adds ` ToSql `
333- and ` FromSql ` implementations for ` bit-vec ` 's ` BitVec ` type.
333+ and ` FromSql ` implementations for ` bit-vec ` 's ` BitVec ` type. Requires ` bit-vec ` version 0.4.
334334
335335### MACADDR type
336336
337337[ MACADDR] ( http://www.postgresql.org/docs/9.4/static/datatype-net-types.html#DATATYPE-MACADDR )
338338support is provided optionally by the ` with-eui48 ` feature, which adds ` ToSql `
339- and ` FromSql ` implementations for ` eui48 ` 's ` MacAddress ` type.
339+ and ` FromSql ` implementations for ` eui48 ` 's ` MacAddress ` type. Requires ` eui48 ` version 0.3.
340340
341341### POINT type
342342
0 commit comments