Move ToString to collections::string

This also impls `FormatWriter` for `Vec<u8>`
This commit is contained in:
Brendan Zabarauskas 2014-11-16 12:38:03 +11:00
parent 59abf75d9e
commit d82a7ea57a
11 changed files with 51 additions and 72 deletions

View file

@ -423,7 +423,7 @@ static DIGIT_E_RADIX: uint = ('e' as uint) - ('a' as uint) + 11u;
#[cfg(test)]
mod tests {
use to_string::ToString;
use string::ToString;
#[test]
fn test_int_to_str_overflow() {