Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Beta fixes #87

Merged
merged 2 commits into from
Mar 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ support for hex, base64, and json encoding and decoding.
"""

[dev-dependencies]
rand = "0.2"
rand = "0.3"
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

//! Support code for encoding and decoding types.

#![feature(convert)]
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
html_root_url = "http://doc.rust-lang.org/rustc-serialize/")]
Expand Down
8 changes: 6 additions & 2 deletions src/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -570,14 +570,18 @@ impl Decodable for path::PathBuf {
use std::os::unix::prelude::*;
let bytes: Vec<u8> = try!(Decodable::decode(d));
let s: OsString = OsStringExt::from_vec(bytes);
Ok(path::PathBuf::from(s))
let mut p = path::PathBuf::new();
p.push(s);
Ok(p)
}
#[cfg(windows)]
fn decode<D: Decoder>(d: &mut D) -> Result<path::PathBuf, D::Error> {
use std::os::windows::prelude::*;
let bytes: Vec<u16> = try!(Decodable::decode(d));
let s: OsString = OsStringExt::from_wide(&bytes);
Ok(path::PathBuf::from(s))
let mut p = PathBuf::new();
p.push(s);
Ok(p)
}
}

Expand Down