Last bit of extra stuff for bit-vec feature
This commit is contained in:
parent
d77577eaaa
commit
ef2c427035
@ -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"
|
||||
|
13
README.md
13
README.md
@ -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<String, Option<String>></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.
|
||||
|
Loading…
Reference in New Issue
Block a user