Last bit of extra stuff for bit-vec feature

This commit is contained in:
Steven Fackler 2015-12-06 12:42:57 -08:00
parent d77577eaaa
commit ef2c427035
2 changed files with 14 additions and 1 deletions

View File

@ -10,4 +10,4 @@ before_script:
- "./.travis/setup.sh"
script:
- cargo test
- cargo test --features "uuid rustc-serialize time unix_socket serde_json chrono openssl"
- cargo test --features "uuid rustc-serialize time unix_socket serde_json chrono openssl bit-vec"

View File

@ -246,6 +246,13 @@ types. The driver currently supports the following conversions:
</td>
<td>UUID</td>
</tr>
<tr>
<td>
<a href="https://github.com/contain-rs/bit-vec">bit_vec::BitVec</a>
(<a href="#optional-features">optional</a>)
</td>
<td>BIT, VARBIT</td>
</tr>
<tr>
<td>HashMap&lt;String, Option&lt;String&gt;&gt;</td>
<td>HSTORE</td>
@ -295,3 +302,9 @@ support is provided optionally by the `time` feature, which adds `ToSql` and
`FromSql` implementations for `time`'s `Timespec` type, or the `chrono`
feature, which adds `ToSql` and `FromSql` implementations for `chrono`'s
`DateTime`, `NaiveDateTime`, `NaiveDate` and `NaiveTime` types.
### BIT/VARBIT types
[BIT and VARBIT](http://www.postgresql.org/docs/9.4/static/datatype-bit.html)
support is provided optionally by the `bit-vec` feature, which adds `ToSql` and
`FromSql` implementations for `bit-vec`'s `BitVec` type.