mirror of
https://github.com/uutils/coreutils
synced 2024-12-16 08:12:39 +00:00
Merge pull request #440 from ebfe/fix-build-master
Update collection paths/names
This commit is contained in:
commit
916c2ac307
4 changed files with 6 additions and 6 deletions
|
@ -17,7 +17,7 @@
|
|||
extern crate getopts;
|
||||
extern crate libc;
|
||||
|
||||
use std::collections::hashmap::HashSet;
|
||||
use std::collections::hash_set::HashSet;
|
||||
use std::io::net::addrinfo;
|
||||
use std::str;
|
||||
use getopts::{optflag, getopts, usage};
|
||||
|
|
|
@ -20,7 +20,7 @@ use std::io::fs::File;
|
|||
use std::path::Path;
|
||||
use std::str::from_utf8;
|
||||
use getopts::{optopt, optflag, getopts, usage};
|
||||
use std::collections::ringbuf::RingBuf;
|
||||
use std::collections::ring_buf::RingBuf;
|
||||
use std::io::timer::sleep;
|
||||
use std::time::duration::Duration;
|
||||
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
extern crate collections;
|
||||
extern crate getopts;
|
||||
|
||||
use collections::bitv::BitvSet;
|
||||
use collections::smallintmap::SmallIntMap;
|
||||
use collections::bitv_set::BitvSet;
|
||||
use collections::vec_map::VecMap;
|
||||
use getopts::OptGroup;
|
||||
use std::char::from_u32;
|
||||
use std::io::print;
|
||||
|
@ -109,7 +109,7 @@ fn delete(set: Vec<char>, complement: bool) {
|
|||
}
|
||||
|
||||
fn tr(set1: &[char], set2: &[char]) {
|
||||
let mut map = SmallIntMap::<char>::new();
|
||||
let mut map = VecMap::<char>::new();
|
||||
let mut out = stdout();
|
||||
|
||||
for i in range(0, set1.len()) {
|
||||
|
|
|
@ -14,7 +14,7 @@ extern crate getopts;
|
|||
@CRATES@
|
||||
|
||||
use std::os;
|
||||
use std::collections::hashmap::HashMap;
|
||||
use std::collections::hash_map::HashMap;
|
||||
|
||||
static NAME: &'static str = "uutils";
|
||||
static VERSION: &'static str = "1.0.0";
|
||||
|
|
Loading…
Reference in a new issue