Upgrade bincode, pkg-config, regex, cmake, fnv

This commit is contained in:
Matt Brubeck 2016-04-29 17:56:15 -07:00
parent 1e23d90631
commit 8d540d1f9e
5 changed files with 157 additions and 117 deletions

View file

@ -10,8 +10,8 @@ fn test_byte_string_move() {
let mut byte_vec = byte_str.bytes();
assert_eq!(byte_vec, "servo".as_bytes());
assert_eq!(*byte_str, []);
assert_eq!(&*byte_str, &*Vec::<u8>::new());
byte_vec = byte_str.into();
assert_eq!(byte_vec, Vec::new());
assert_eq!(byte_vec, Vec::<u8>::new());
}