Skip to content

Commit

Permalink
fixup: support older Rust versions
Browse files Browse the repository at this point in the history
We need to make sure the 'serde_bytes' name is in scope.
  • Loading branch information
BurntSushi committed Dec 15, 2018
1 parent 497c15b commit 3a4ed9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deserializer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ mod tests {
use std::collections::HashMap;

use serde::de::DeserializeOwned;
use serde_bytes::ByteBuf;
use serde_bytes::{self, ByteBuf};

use byte_record::ByteRecord;
use error::Error;
Expand Down

0 comments on commit 3a4ed9a

Please sign in to comment.