Upgrade to latest Rust nightly

- change to_string() on numbers to to_str()
This commit is contained in:
Ben S 2014-07-10 22:20:52 +01:00
parent fc90f4bfc9
commit 90099f28cf
2 changed files with 6 additions and 6 deletions

View File

@ -28,4 +28,4 @@ Options
Installation
------------
exa is written in [Rust](http://www.rust-lang.org). It compiles with Rust 0.11, the latest version - 0.10 will not do, as there have been too many breaking changes since. You will also need [Cargo](http://crates.io), the Rust package manager. Once you have them both set up, a simple `cargo build` will pull in all the dependencies and compile exa.
exa is written in [Rust](http://www.rust-lang.org). You'll have to use the nightly -- I try to keep it up to date with the latest version when possible. You will also need [Cargo](http://crates.io), the Rust package manager. Once you have them both set up, a simple `cargo build` will pull in all the dependencies and compile exa.

View File

@ -109,13 +109,13 @@ impl<'a> File<'a> {
// the time.
HardLinks => {
let style = if self.stat.kind == io::TypeFile && self.stat.unstable.nlink > 1 { Red.on(Yellow) } else { Red.normal() };
style.paint(self.stat.unstable.nlink.to_str().as_slice())
style.paint(self.stat.unstable.nlink.to_string().as_slice())
},
Inode => Purple.paint(self.stat.unstable.inode.to_str().as_slice()),
Inode => Purple.paint(self.stat.unstable.inode.to_string().as_slice()),
Blocks => {
if self.stat.kind == io::TypeFile || self.stat.kind == io::TypeSymlink {
Cyan.paint(self.stat.unstable.blocks.to_str().as_slice())
Cyan.paint(self.stat.unstable.blocks.to_string().as_slice())
}
else {
Grey.paint("-")
@ -128,13 +128,13 @@ impl<'a> File<'a> {
let uid = self.stat.unstable.uid as u32;
unix.load_user(uid);
let style = if unix.uid == uid { Yellow.bold() } else { Plain };
let string = unix.get_user_name(uid).unwrap_or(uid.to_str());
let string = unix.get_user_name(uid).unwrap_or(uid.to_string());
style.paint(string.as_slice())
},
Group => {
let gid = self.stat.unstable.gid as u32;
unix.load_group(gid);
let name = unix.get_group_name(gid).unwrap_or(gid.to_str());
let name = unix.get_group_name(gid).unwrap_or(gid.to_string());
let style = if unix.is_group_member(gid) { Yellow.normal() } else { Plain };
style.paint(name.as_slice())
},