Skip to content

Commit 76db16e

Browse files
committed
Fix feature set for docs
1 parent d651927 commit 76db16e

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ before_script:
1010
script:
1111
- cargo test
1212
- cargo test --features "uuid rustc-serialize time unix_socket serde chrono openssl"
13-
- cargo doc --no-deps --features "unix_socket openssl rustc-serialize time unix_socket serde chrono openssl"
13+
- cargo doc --no-deps --features "uuid rustc-serialize time unix_socket serde chrono openssl"
1414
after_success:
1515
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_RUST_VERSION == "stable" && ./.travis/update_docs.sh
1616
env:

src/types/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -611,8 +611,7 @@ primitive_from!(f32, read_f32, Type::Float4);
611611
primitive_from!(f64, read_f64, Type::Float8);
612612

613613
impl FromSql for HashMap<String, Option<String>> {
614-
fn from_sql<R: Read>(_: &Type, raw: &mut R)
615-
-> Result<HashMap<String, Option<String>>> {
614+
fn from_sql<R: Read>(_: &Type, raw: &mut R) -> Result<HashMap<String, Option<String>>> {
616615
let mut map = HashMap::new();
617616

618617
let count = try!(raw.read_i32::<BigEndian>());

0 commit comments

Comments
 (0)