mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 03:57:44 +00:00
sync: rename crate to uusync due to name clash with rusts libsync
This commit is contained in:
parent
b7357c527f
commit
4738d4efcd
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
#![crate_id(name="sync", vers="1.0.0", author="Alexander Fomin")]
|
||||
#![crate_id = "uusync#1.0.0"]
|
||||
/*
|
||||
* This file is part of the uutils coreutils package.
|
||||
*
|
||||
|
|
|
@ -42,7 +42,7 @@ extern crate rmdir;
|
|||
extern crate seq;
|
||||
extern crate sleep;
|
||||
extern crate sum;
|
||||
extern crate sync;
|
||||
extern crate uusync;
|
||||
extern crate tac;
|
||||
extern crate tail;
|
||||
extern crate tee;
|
||||
|
@ -101,7 +101,7 @@ fn util_map() -> HashMap<&str, fn(Vec<String>) -> int> {
|
|||
map.insert("seq", seq::uumain);
|
||||
map.insert("sleep", sleep::uumain);
|
||||
map.insert("sum", sum::uumain);
|
||||
map.insert("sync", sync::uumain);
|
||||
map.insert("sync", uusync::uumain);
|
||||
map.insert("tac", tac::uumain);
|
||||
map.insert("tail", tail::uumain);
|
||||
map.insert("tee", tee::uumain);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue