diff --git a/src/uu/arch/Cargo.toml b/src/uu/arch/Cargo.toml index ae3fe65c9..7fc71e1b4 100644 --- a/src/uu/arch/Cargo.toml +++ b/src/uu/arch/Cargo.toml @@ -3,7 +3,7 @@ name = "arch" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_arch" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "arch" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/base32/Cargo.toml b/src/uu/base32/Cargo.toml index 69788c9ea..63f5c6ebf 100644 --- a/src/uu/base32/Cargo.toml +++ b/src/uu/base32/Cargo.toml @@ -3,7 +3,7 @@ name = "base32" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_base32" @@ -16,4 +16,4 @@ clippy = { version = "0.0.212", optional = true } [[bin]] name = "base32" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/base64/Cargo.toml b/src/uu/base64/Cargo.toml index b4f5c6a19..300c616c2 100644 --- a/src/uu/base64/Cargo.toml +++ b/src/uu/base64/Cargo.toml @@ -3,7 +3,7 @@ name = "base64" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_base64" @@ -14,4 +14,4 @@ uucore = { version = "0.0.2", features = ["encoding"] } [[bin]] name = "base64" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/basename/Cargo.toml b/src/uu/basename/Cargo.toml index b1ebf3059..d1cebb4c3 100644 --- a/src/uu/basename/Cargo.toml +++ b/src/uu/basename/Cargo.toml @@ -3,7 +3,7 @@ name = "basename" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_basename" @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "basename" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/cat/Cargo.toml b/src/uu/cat/Cargo.toml index f09b1e6a2..c64fcb52e 100644 --- a/src/uu/cat/Cargo.toml +++ b/src/uu/cat/Cargo.toml @@ -3,7 +3,7 @@ name = "cat" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_cat" @@ -18,4 +18,4 @@ unix_socket = "0.5.0" [[bin]] name = "cat" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/chgrp/Cargo.toml b/src/uu/chgrp/Cargo.toml index d2a8be048..37f490cbf 100644 --- a/src/uu/chgrp/Cargo.toml +++ b/src/uu/chgrp/Cargo.toml @@ -3,7 +3,7 @@ name = "chgrp" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_chgrp" @@ -15,4 +15,4 @@ walkdir = "2.2.8" [[bin]] name = "chgrp" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/chmod/Cargo.toml b/src/uu/chmod/Cargo.toml index fc7002fe4..8b3d5c43e 100644 --- a/src/uu/chmod/Cargo.toml +++ b/src/uu/chmod/Cargo.toml @@ -3,7 +3,7 @@ name = "chmod" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_chmod" @@ -16,4 +16,4 @@ walker = "1.0.0" [[bin]] name = "chmod" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/chown/Cargo.toml b/src/uu/chown/Cargo.toml index d2225ef6f..98be41b04 100644 --- a/src/uu/chown/Cargo.toml +++ b/src/uu/chown/Cargo.toml @@ -3,7 +3,7 @@ name = "chown" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_chown" @@ -20,4 +20,4 @@ optional = true [[bin]] name = "chown" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/chroot/Cargo.toml b/src/uu/chroot/Cargo.toml index 7324713cf..2c17faf92 100644 --- a/src/uu/chroot/Cargo.toml +++ b/src/uu/chroot/Cargo.toml @@ -3,7 +3,7 @@ name = "chroot" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_chroot" @@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["entries"] } [[bin]] name = "chroot" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/cksum/Cargo.toml b/src/uu/cksum/Cargo.toml index b86b7ae03..403e0e8e1 100644 --- a/src/uu/cksum/Cargo.toml +++ b/src/uu/cksum/Cargo.toml @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "cksum" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/cksum/build.rs b/src/uu/cksum/build.rs index e918a7442..df4e02c28 100644 --- a/src/uu/cksum/build.rs +++ b/src/uu/cksum/build.rs @@ -15,7 +15,7 @@ use std::path::Path; const CRC_TABLE_LEN: usize = 256; -#[path = "../#common/mkmain.rs"] +#[path = "../../common/mkmain.rs"] mod mkmain; fn main() { diff --git a/src/uu/comm/Cargo.toml b/src/uu/comm/Cargo.toml index 617aa2f77..017de5209 100644 --- a/src/uu/comm/Cargo.toml +++ b/src/uu/comm/Cargo.toml @@ -3,7 +3,7 @@ name = "comm" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_comm" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "comm" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/cp/Cargo.toml b/src/uu/cp/Cargo.toml index 703cc77e8..8ffb83bb3 100644 --- a/src/uu/cp/Cargo.toml +++ b/src/uu/cp/Cargo.toml @@ -6,7 +6,7 @@ authors = [ "Joshua S. Miller ", ] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_cp" @@ -33,4 +33,4 @@ xattr="0.2.1" [[bin]] name = "cp" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/cut/Cargo.toml b/src/uu/cut/Cargo.toml index 17172149c..59bb0f56d 100644 --- a/src/uu/cut/Cargo.toml +++ b/src/uu/cut/Cargo.toml @@ -3,7 +3,7 @@ name = "cut" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_cut" @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "cut" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/date/Cargo.toml b/src/uu/date/Cargo.toml index 6b3e141c2..e80e85353 100644 --- a/src/uu/date/Cargo.toml +++ b/src/uu/date/Cargo.toml @@ -3,7 +3,7 @@ name = "date" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_date" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "date" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/dircolors/Cargo.toml b/src/uu/dircolors/Cargo.toml index 7b1a5832e..5af6334fc 100644 --- a/src/uu/dircolors/Cargo.toml +++ b/src/uu/dircolors/Cargo.toml @@ -3,7 +3,7 @@ name = "dircolors" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_dircolors" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "dircolors" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/dirname/Cargo.toml b/src/uu/dirname/Cargo.toml index 3356b2a17..7eff0730e 100644 --- a/src/uu/dirname/Cargo.toml +++ b/src/uu/dirname/Cargo.toml @@ -3,7 +3,7 @@ name = "dirname" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_dirname" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "dirname" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/du/Cargo.toml b/src/uu/du/Cargo.toml index 62b2f8c06..df0faf9bc 100644 --- a/src/uu/du/Cargo.toml +++ b/src/uu/du/Cargo.toml @@ -3,7 +3,7 @@ name = "du" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_du" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "du" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/echo/Cargo.toml b/src/uu/echo/Cargo.toml index 256009ed9..88dce77f7 100644 --- a/src/uu/echo/Cargo.toml +++ b/src/uu/echo/Cargo.toml @@ -3,7 +3,7 @@ name = "echo" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_echo" @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "echo" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/env/Cargo.toml b/src/uu/env/Cargo.toml index 02d9775ac..72509ef04 100644 --- a/src/uu/env/Cargo.toml +++ b/src/uu/env/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" authors = ["uutils developers"] description = "Set each NAME to VALUE in the environment and run COMMAND" license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" edition = "2018" [lib] @@ -19,4 +19,4 @@ uucore = "0.0.2" [[bin]] name = "env" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/expand/Cargo.toml b/src/uu/expand/Cargo.toml index 1be87ac27..fb92d5bd6 100644 --- a/src/uu/expand/Cargo.toml +++ b/src/uu/expand/Cargo.toml @@ -3,7 +3,7 @@ name = "expand" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_expand" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "expand" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/expr/Cargo.toml b/src/uu/expr/Cargo.toml index fd5e90abd..275a64c26 100644 --- a/src/uu/expr/Cargo.toml +++ b/src/uu/expr/Cargo.toml @@ -3,7 +3,7 @@ name = "expr" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_expr" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "expr" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/factor/Cargo.toml b/src/uu/factor/Cargo.toml index 06a3412e9..8f61ced4a 100644 --- a/src/uu/factor/Cargo.toml +++ b/src/uu/factor/Cargo.toml @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "factor" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/factor/build.rs b/src/uu/factor/build.rs index 7539eb520..acc4d9a3f 100644 --- a/src/uu/factor/build.rs +++ b/src/uu/factor/build.rs @@ -34,7 +34,7 @@ mod numeric; mod sieve; -#[path = "../#common/mkmain.rs"] +#[path = "../../common/mkmain.rs"] mod mkmain; // extended Euclid algorithm diff --git a/src/uu/false/Cargo.toml b/src/uu/false/Cargo.toml index 6a9aea11c..8f0af3062 100644 --- a/src/uu/false/Cargo.toml +++ b/src/uu/false/Cargo.toml @@ -3,7 +3,7 @@ name = "false" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_false" @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "false" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/fmt/Cargo.toml b/src/uu/fmt/Cargo.toml index 876f9bf6c..76204f0bf 100644 --- a/src/uu/fmt/Cargo.toml +++ b/src/uu/fmt/Cargo.toml @@ -3,7 +3,7 @@ name = "fmt" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_fmt" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "fmt" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/fold/Cargo.toml b/src/uu/fold/Cargo.toml index 121c89a72..155d5b7b2 100644 --- a/src/uu/fold/Cargo.toml +++ b/src/uu/fold/Cargo.toml @@ -3,7 +3,7 @@ name = "fold" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_fold" @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "fold" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/groups/Cargo.toml b/src/uu/groups/Cargo.toml index f6201694c..e9513227b 100644 --- a/src/uu/groups/Cargo.toml +++ b/src/uu/groups/Cargo.toml @@ -3,7 +3,7 @@ name = "groups" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_groups" @@ -14,4 +14,4 @@ uucore = { version = "0.0.2", features = ["entries"] } [[bin]] name = "groups" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/hashsum/Cargo.toml b/src/uu/hashsum/Cargo.toml index 8662cb002..0ab2661ce 100644 --- a/src/uu/hashsum/Cargo.toml +++ b/src/uu/hashsum/Cargo.toml @@ -3,7 +3,7 @@ name = "hashsum" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_hashsum" @@ -24,4 +24,4 @@ uucore = "0.0.2" [[bin]] name = "hashsum" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/head/Cargo.toml b/src/uu/head/Cargo.toml index 759b1010a..467681b99 100644 --- a/src/uu/head/Cargo.toml +++ b/src/uu/head/Cargo.toml @@ -3,7 +3,7 @@ name = "head" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_head" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "head" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/hostid/Cargo.toml b/src/uu/hostid/Cargo.toml index 4f30c8bf6..69225c667 100644 --- a/src/uu/hostid/Cargo.toml +++ b/src/uu/hostid/Cargo.toml @@ -3,7 +3,7 @@ name = "hostid" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_hostid" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "hostid" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/hostname/Cargo.toml b/src/uu/hostname/Cargo.toml index 3de929d8a..b5f27bbd2 100644 --- a/src/uu/hostname/Cargo.toml +++ b/src/uu/hostname/Cargo.toml @@ -3,7 +3,7 @@ name = "hostname" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_hostname" @@ -17,4 +17,4 @@ winapi = { version = "0.3", features = ["sysinfoapi", "winsock2"] } [[bin]] name = "hostname" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/id/Cargo.toml b/src/uu/id/Cargo.toml index 5d2f97d9b..34df8250d 100644 --- a/src/uu/id/Cargo.toml +++ b/src/uu/id/Cargo.toml @@ -3,7 +3,7 @@ name = "id" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_id" @@ -14,4 +14,4 @@ uucore = { version = "0.0.2", features = ["entries", "process"] } [[bin]] name = "id" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/install/Cargo.toml b/src/uu/install/Cargo.toml index e52903315..e50cc69f7 100644 --- a/src/uu/install/Cargo.toml +++ b/src/uu/install/Cargo.toml @@ -3,7 +3,7 @@ name = "install" version = "0.0.1" authors = ["Ben Eills "] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_install" @@ -19,4 +19,4 @@ time = "0.1.40" [[bin]] name = "install" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/join/Cargo.toml b/src/uu/join/Cargo.toml index 9ee6f13ff..90609d103 100644 --- a/src/uu/join/Cargo.toml +++ b/src/uu/join/Cargo.toml @@ -3,7 +3,7 @@ name = "join" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_join" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "join" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/kill/Cargo.toml b/src/uu/kill/Cargo.toml index add5004f3..4c7a93591 100644 --- a/src/uu/kill/Cargo.toml +++ b/src/uu/kill/Cargo.toml @@ -3,7 +3,7 @@ name = "kill" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_kill" @@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["signals"] } [[bin]] name = "kill" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/link/Cargo.toml b/src/uu/link/Cargo.toml index f26c4897f..e405b4e2a 100644 --- a/src/uu/link/Cargo.toml +++ b/src/uu/link/Cargo.toml @@ -3,7 +3,7 @@ name = "link" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_link" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "link" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/ln/Cargo.toml b/src/uu/ln/Cargo.toml index 20024c2b0..e7f0170ed 100644 --- a/src/uu/ln/Cargo.toml +++ b/src/uu/ln/Cargo.toml @@ -3,7 +3,7 @@ name = "ln" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_ln" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "ln" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/logname/Cargo.toml b/src/uu/logname/Cargo.toml index 102fd66d0..83d793cf6 100644 --- a/src/uu/logname/Cargo.toml +++ b/src/uu/logname/Cargo.toml @@ -3,7 +3,7 @@ name = "logname" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_logname" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "logname" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/ls/Cargo.toml b/src/uu/ls/Cargo.toml index ef8454a11..c713729b5 100644 --- a/src/uu/ls/Cargo.toml +++ b/src/uu/ls/Cargo.toml @@ -3,7 +3,7 @@ name = "ls" version = "0.0.1" authors = ["Jeremiah Peschka "] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_ls" @@ -22,4 +22,4 @@ uucore = { version = "0.0.2", features = ["entries", "fs"] } [[bin]] name = "ls" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/mkdir/Cargo.toml b/src/uu/mkdir/Cargo.toml index 1dddf8b87..1c050722a 100644 --- a/src/uu/mkdir/Cargo.toml +++ b/src/uu/mkdir/Cargo.toml @@ -3,7 +3,7 @@ name = "mkdir" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_mkdir" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "mkdir" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/mkfifo/Cargo.toml b/src/uu/mkfifo/Cargo.toml index 0c16ac800..25e07fa28 100644 --- a/src/uu/mkfifo/Cargo.toml +++ b/src/uu/mkfifo/Cargo.toml @@ -3,7 +3,7 @@ name = "mkfifo" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_mkfifo" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "mkfifo" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/mknod/Cargo.toml b/src/uu/mknod/Cargo.toml index ea6c995d5..090143353 100644 --- a/src/uu/mknod/Cargo.toml +++ b/src/uu/mknod/Cargo.toml @@ -3,7 +3,7 @@ name = "mknod" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_mknod" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "mknod" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/mktemp/Cargo.toml b/src/uu/mktemp/Cargo.toml index 3b5a9bad6..8d49b3cac 100644 --- a/src/uu/mktemp/Cargo.toml +++ b/src/uu/mktemp/Cargo.toml @@ -3,7 +3,7 @@ name = "mktemp" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_mktemp" @@ -17,4 +17,4 @@ uucore = "0.0.2" [[bin]] name = "mktemp" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/more/Cargo.toml b/src/uu/more/Cargo.toml index b4479944c..87125d6f7 100644 --- a/src/uu/more/Cargo.toml +++ b/src/uu/more/Cargo.toml @@ -3,7 +3,7 @@ name = "more" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_more" @@ -22,4 +22,4 @@ nix = "0.8.1" [[bin]] name = "more" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/mv/Cargo.toml b/src/uu/mv/Cargo.toml index 4bae64ff0..4432c17b6 100644 --- a/src/uu/mv/Cargo.toml +++ b/src/uu/mv/Cargo.toml @@ -3,7 +3,7 @@ name = "mv" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_mv" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "mv" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/nice/Cargo.toml b/src/uu/nice/Cargo.toml index 6e54d114c..d09a7709f 100644 --- a/src/uu/nice/Cargo.toml +++ b/src/uu/nice/Cargo.toml @@ -3,7 +3,7 @@ name = "nice" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_nice" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "nice" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/nl/Cargo.toml b/src/uu/nl/Cargo.toml index 534f10b5d..1f582aae5 100644 --- a/src/uu/nl/Cargo.toml +++ b/src/uu/nl/Cargo.toml @@ -3,7 +3,7 @@ name = "nl" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_nl" @@ -20,4 +20,4 @@ uucore = "0.0.2" [[bin]] name = "nl" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/nohup/Cargo.toml b/src/uu/nohup/Cargo.toml index 312b0c149..68afca8a0 100644 --- a/src/uu/nohup/Cargo.toml +++ b/src/uu/nohup/Cargo.toml @@ -3,7 +3,7 @@ name = "nohup" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_nohup" @@ -16,4 +16,4 @@ uucore = { version = "0.0.2", features = ["fs"] } [[bin]] name = "nohup" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/nproc/Cargo.toml b/src/uu/nproc/Cargo.toml index 8a7d58fc9..f80fb727c 100644 --- a/src/uu/nproc/Cargo.toml +++ b/src/uu/nproc/Cargo.toml @@ -3,7 +3,7 @@ name = "nproc" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_nproc" @@ -17,4 +17,4 @@ uucore = "0.0.2" [[bin]] name = "nproc" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/numfmt/Cargo.toml b/src/uu/numfmt/Cargo.toml index cf4100dfa..cd56f2dfc 100644 --- a/src/uu/numfmt/Cargo.toml +++ b/src/uu/numfmt/Cargo.toml @@ -3,7 +3,7 @@ name = "numfmt" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_numfmt" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "numfmt" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/od/Cargo.toml b/src/uu/od/Cargo.toml index 38a6d8bd5..2fc92c2a8 100644 --- a/src/uu/od/Cargo.toml +++ b/src/uu/od/Cargo.toml @@ -3,7 +3,7 @@ name = "od" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_od" @@ -18,4 +18,4 @@ uucore = "0.0.2" [[bin]] name = "od" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/paste/Cargo.toml b/src/uu/paste/Cargo.toml index 17012cd67..6673311a4 100644 --- a/src/uu/paste/Cargo.toml +++ b/src/uu/paste/Cargo.toml @@ -3,7 +3,7 @@ name = "paste" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_paste" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "paste" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/pathchk/Cargo.toml b/src/uu/pathchk/Cargo.toml index 22e686e07..c554356cd 100644 --- a/src/uu/pathchk/Cargo.toml +++ b/src/uu/pathchk/Cargo.toml @@ -3,7 +3,7 @@ name = "pathchk" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_pathchk" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "pathchk" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/pinky/Cargo.toml b/src/uu/pinky/Cargo.toml index f917ebbd1..6bb45200f 100644 --- a/src/uu/pinky/Cargo.toml +++ b/src/uu/pinky/Cargo.toml @@ -3,7 +3,7 @@ name = "pinky" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_pinky" @@ -14,4 +14,4 @@ uucore = { version = "0.0.2", features = ["utmpx", "entries"] } [[bin]] name = "pinky" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/printenv/Cargo.toml b/src/uu/printenv/Cargo.toml index 3e4ae8dd8..473adfab4 100644 --- a/src/uu/printenv/Cargo.toml +++ b/src/uu/printenv/Cargo.toml @@ -3,7 +3,7 @@ name = "printenv" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_printenv" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "printenv" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/printf/Cargo.toml b/src/uu/printf/Cargo.toml index 6e19fa0f9..27eee8dab 100644 --- a/src/uu/printf/Cargo.toml +++ b/src/uu/printf/Cargo.toml @@ -3,7 +3,7 @@ name = "printf" version = "0.0.1" authors = ["Nathan Ross"] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_printf" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "printf" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/ptx/Cargo.toml b/src/uu/ptx/Cargo.toml index 99e58a7b3..e3d6135ff 100644 --- a/src/uu/ptx/Cargo.toml +++ b/src/uu/ptx/Cargo.toml @@ -3,7 +3,7 @@ name = "ptx" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_ptx" @@ -20,4 +20,4 @@ uucore = "0.0.2" [[bin]] name = "ptx" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/pwd/Cargo.toml b/src/uu/pwd/Cargo.toml index bd9376c41..328fda9e8 100644 --- a/src/uu/pwd/Cargo.toml +++ b/src/uu/pwd/Cargo.toml @@ -3,7 +3,7 @@ name = "pwd" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_pwd" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "pwd" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/readlink/Cargo.toml b/src/uu/readlink/Cargo.toml index 458e81d35..39b88f0a8 100644 --- a/src/uu/readlink/Cargo.toml +++ b/src/uu/readlink/Cargo.toml @@ -3,7 +3,7 @@ name = "readlink" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_readlink" @@ -16,4 +16,4 @@ uucore = { version = "0.0.2", features = ["fs"] } [[bin]] name = "readlink" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/realpath/Cargo.toml b/src/uu/realpath/Cargo.toml index c5d403c61..c79c5f5a7 100644 --- a/src/uu/realpath/Cargo.toml +++ b/src/uu/realpath/Cargo.toml @@ -3,7 +3,7 @@ name = "realpath" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_realpath" @@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["fs"] } [[bin]] name = "realpath" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/relpath/Cargo.toml b/src/uu/relpath/Cargo.toml index aa4f423f3..6bb6cb4de 100644 --- a/src/uu/relpath/Cargo.toml +++ b/src/uu/relpath/Cargo.toml @@ -3,7 +3,7 @@ name = "relpath" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_relpath" @@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["fs"] } [[bin]] name = "relpath" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/rm/Cargo.toml b/src/uu/rm/Cargo.toml index 7969d064c..bbaaaea53 100644 --- a/src/uu/rm/Cargo.toml +++ b/src/uu/rm/Cargo.toml @@ -3,7 +3,7 @@ name = "rm" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_rm" @@ -17,4 +17,4 @@ uucore = "0.0.2" [[bin]] name = "rm" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/rmdir/Cargo.toml b/src/uu/rmdir/Cargo.toml index aeebee6fb..233e9bdc8 100644 --- a/src/uu/rmdir/Cargo.toml +++ b/src/uu/rmdir/Cargo.toml @@ -3,7 +3,7 @@ name = "rmdir" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_rmdir" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "rmdir" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/seq/Cargo.toml b/src/uu/seq/Cargo.toml index b2df616f0..c1c38b926 100644 --- a/src/uu/seq/Cargo.toml +++ b/src/uu/seq/Cargo.toml @@ -3,7 +3,7 @@ name = "seq" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_seq" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "seq" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/shred/Cargo.toml b/src/uu/shred/Cargo.toml index 5620119dc..e23dce935 100644 --- a/src/uu/shred/Cargo.toml +++ b/src/uu/shred/Cargo.toml @@ -3,7 +3,7 @@ name = "shred" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_shred" @@ -19,4 +19,4 @@ uucore = "0.0.2" [[bin]] name = "shred" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/shuf/Cargo.toml b/src/uu/shuf/Cargo.toml index 0d070b3c5..755b3c207 100644 --- a/src/uu/shuf/Cargo.toml +++ b/src/uu/shuf/Cargo.toml @@ -3,7 +3,7 @@ name = "shuf" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_shuf" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "shuf" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/sleep/Cargo.toml b/src/uu/sleep/Cargo.toml index ed2e296bf..ccfcf092b 100644 --- a/src/uu/sleep/Cargo.toml +++ b/src/uu/sleep/Cargo.toml @@ -3,7 +3,7 @@ name = "sleep" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_sleep" @@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["parse_time"] } [[bin]] name = "sleep" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/sort/Cargo.toml b/src/uu/sort/Cargo.toml index 1b473d488..9795c7cb3 100644 --- a/src/uu/sort/Cargo.toml +++ b/src/uu/sort/Cargo.toml @@ -3,7 +3,7 @@ name = "sort" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_sort" @@ -17,4 +17,4 @@ uucore = { version = "0.0.2", features = ["fs"] } [[bin]] name = "sort" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/split/Cargo.toml b/src/uu/split/Cargo.toml index fdba95859..a2904515d 100644 --- a/src/uu/split/Cargo.toml +++ b/src/uu/split/Cargo.toml @@ -3,7 +3,7 @@ name = "split" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_split" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "split" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/stat/Cargo.toml b/src/uu/stat/Cargo.toml index 0f8eaf850..4fc924645 100644 --- a/src/uu/stat/Cargo.toml +++ b/src/uu/stat/Cargo.toml @@ -3,7 +3,7 @@ name = "stat" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_stat" @@ -16,4 +16,4 @@ uucore = { version = "0.0.2", features = ["entries"] } [[bin]] name = "stat" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/stdbuf/Cargo.toml b/src/uu/stdbuf/Cargo.toml index 65a9db3c5..f59d252f4 100644 --- a/src/uu/stdbuf/Cargo.toml +++ b/src/uu/stdbuf/Cargo.toml @@ -19,4 +19,4 @@ libstdbuf = { path="src/libstdbuf" } [[bin]] name = "stdbuf" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/stdbuf/build.rs b/src/uu/stdbuf/build.rs index a6170e35a..d4c9b718d 100644 --- a/src/uu/stdbuf/build.rs +++ b/src/uu/stdbuf/build.rs @@ -2,7 +2,7 @@ use std::env; use std::fs; use std::path::Path; -#[path = "../#common/mkmain.rs"] +#[path = "../../common/mkmain.rs"] mod mkmain; #[cfg(not(any(target_os = "macos", target_os = "ios", target_os = "windows")))] diff --git a/src/uu/sum/Cargo.toml b/src/uu/sum/Cargo.toml index 20eea0bdc..939b5803a 100644 --- a/src/uu/sum/Cargo.toml +++ b/src/uu/sum/Cargo.toml @@ -3,7 +3,7 @@ name = "sum" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_sum" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "sum" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/sync/Cargo.toml b/src/uu/sync/Cargo.toml index ece0ab1ca..0d24a5fa5 100644 --- a/src/uu/sync/Cargo.toml +++ b/src/uu/sync/Cargo.toml @@ -3,7 +3,7 @@ name = "sync" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_sync" @@ -18,4 +18,4 @@ winapi = { version = "0.3", features = ["handleapi", "winerror"] } [[bin]] name = "sync" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/tac/Cargo.toml b/src/uu/tac/Cargo.toml index 561dc3b6d..11f69b73e 100644 --- a/src/uu/tac/Cargo.toml +++ b/src/uu/tac/Cargo.toml @@ -3,7 +3,7 @@ name = "tac" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_tac" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "tac" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/tail/Cargo.toml b/src/uu/tail/Cargo.toml index b32db427c..0789ed5b5 100644 --- a/src/uu/tail/Cargo.toml +++ b/src/uu/tail/Cargo.toml @@ -3,7 +3,7 @@ name = "tail" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_tail" @@ -21,4 +21,4 @@ redox_syscall = "0.1" [[bin]] name = "tail" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/tee/Cargo.toml b/src/uu/tee/Cargo.toml index 3639e1c8e..a6c44f756 100644 --- a/src/uu/tee/Cargo.toml +++ b/src/uu/tee/Cargo.toml @@ -3,7 +3,7 @@ name = "tee" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_tee" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "tee" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/test/Cargo.toml b/src/uu/test/Cargo.toml index 21d070e05..4b89d3a6e 100644 --- a/src/uu/test/Cargo.toml +++ b/src/uu/test/Cargo.toml @@ -3,7 +3,7 @@ name = "test" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_test" @@ -18,4 +18,4 @@ redox_syscall = "0.1" [[bin]] name = "test" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/timeout/Cargo.toml b/src/uu/timeout/Cargo.toml index 24312f3aa..44a02a13e 100644 --- a/src/uu/timeout/Cargo.toml +++ b/src/uu/timeout/Cargo.toml @@ -3,7 +3,7 @@ name = "timeout" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_timeout" @@ -17,4 +17,4 @@ uucore = { version = "0.0.2", features = ["parse_time", "process"] } [[bin]] name = "timeout" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/touch/Cargo.toml b/src/uu/touch/Cargo.toml index 5c4a5f446..dd1f5fd58 100644 --- a/src/uu/touch/Cargo.toml +++ b/src/uu/touch/Cargo.toml @@ -3,7 +3,7 @@ name = "touch" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_touch" @@ -17,4 +17,4 @@ uucore = { version = "0.0.2", features = ["libc"] } [[bin]] name = "touch" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/tr/Cargo.toml b/src/uu/tr/Cargo.toml index 21b73787c..df3fc69da 100644 --- a/src/uu/tr/Cargo.toml +++ b/src/uu/tr/Cargo.toml @@ -3,7 +3,7 @@ name = "tr" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_tr" @@ -17,4 +17,4 @@ uucore = "0.0.2" [[bin]] name = "tr" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/true/Cargo.toml b/src/uu/true/Cargo.toml index 279752cc4..37db54256 100644 --- a/src/uu/true/Cargo.toml +++ b/src/uu/true/Cargo.toml @@ -3,7 +3,7 @@ name = "true" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_true" @@ -14,4 +14,4 @@ uucore = "0.0.2" [[bin]] name = "true" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/truncate/Cargo.toml b/src/uu/truncate/Cargo.toml index 396e29bd4..506c96550 100644 --- a/src/uu/truncate/Cargo.toml +++ b/src/uu/truncate/Cargo.toml @@ -3,7 +3,7 @@ name = "truncate" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_truncate" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "truncate" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/tsort/Cargo.toml b/src/uu/tsort/Cargo.toml index 157e67a70..82f710b1d 100644 --- a/src/uu/tsort/Cargo.toml +++ b/src/uu/tsort/Cargo.toml @@ -3,7 +3,7 @@ name = "tsort" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_tsort" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "tsort" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/tty/Cargo.toml b/src/uu/tty/Cargo.toml index db4f9fd05..7d2769a95 100644 --- a/src/uu/tty/Cargo.toml +++ b/src/uu/tty/Cargo.toml @@ -3,7 +3,7 @@ name = "tty" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_tty" @@ -16,4 +16,4 @@ uucore = { version = "0.0.2", features = ["fs"] } [[bin]] name = "tty" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/uname/Cargo.toml b/src/uu/uname/Cargo.toml index 62a3a2544..fa4ebb406 100644 --- a/src/uu/uname/Cargo.toml +++ b/src/uu/uname/Cargo.toml @@ -3,7 +3,7 @@ name = "uname" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_uname" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "uname" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/unexpand/Cargo.toml b/src/uu/unexpand/Cargo.toml index 8a28321ea..d81f290e4 100644 --- a/src/uu/unexpand/Cargo.toml +++ b/src/uu/unexpand/Cargo.toml @@ -3,7 +3,7 @@ name = "unexpand" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_unexpand" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "unexpand" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/uniq/Cargo.toml b/src/uu/uniq/Cargo.toml index 2a69e9c16..5263efca4 100644 --- a/src/uu/uniq/Cargo.toml +++ b/src/uu/uniq/Cargo.toml @@ -3,7 +3,7 @@ name = "uniq" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_uniq" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "uniq" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/unlink/Cargo.toml b/src/uu/unlink/Cargo.toml index e336e3ece..9cd1ee7d2 100644 --- a/src/uu/unlink/Cargo.toml +++ b/src/uu/unlink/Cargo.toml @@ -3,7 +3,7 @@ name = "unlink" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_unlink" @@ -16,4 +16,4 @@ uucore = "0.0.2" [[bin]] name = "unlink" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/uptime/Cargo.toml b/src/uu/uptime/Cargo.toml index d5427ab66..93bcd4349 100644 --- a/src/uu/uptime/Cargo.toml +++ b/src/uu/uptime/Cargo.toml @@ -3,7 +3,7 @@ name = "uptime" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_uptime" @@ -16,4 +16,4 @@ uucore = { version = "0.0.2", features = ["utmpx"] } [[bin]] name = "uptime" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/users/Cargo.toml b/src/uu/users/Cargo.toml index 25fe9dfc1..5176646cf 100644 --- a/src/uu/users/Cargo.toml +++ b/src/uu/users/Cargo.toml @@ -3,7 +3,7 @@ name = "users" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_users" @@ -15,4 +15,4 @@ uucore = { version = "0.0.2", features = ["utmpx"] } [[bin]] name = "users" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/wc/Cargo.toml b/src/uu/wc/Cargo.toml index 711f2d53e..cad2a4286 100644 --- a/src/uu/wc/Cargo.toml +++ b/src/uu/wc/Cargo.toml @@ -3,7 +3,7 @@ name = "wc" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_wc" @@ -15,4 +15,4 @@ uucore = "0.0.2" [[bin]] name = "wc" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/who/Cargo.toml b/src/uu/who/Cargo.toml index ba8cdad21..ce8f3c509 100644 --- a/src/uu/who/Cargo.toml +++ b/src/uu/who/Cargo.toml @@ -3,7 +3,7 @@ name = "who" version = "0.0.1" authors = [] license = "MIT" -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_who" @@ -16,4 +16,4 @@ clippy = { version = "0.0.212", optional = true } [[bin]] name = "who" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/whoami/Cargo.toml b/src/uu/whoami/Cargo.toml index b96dde5a8..f1d315fce 100644 --- a/src/uu/whoami/Cargo.toml +++ b/src/uu/whoami/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" authors = [] license = "MIT" description = "Print effective user ID." -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_whoami" @@ -18,4 +18,4 @@ winapi = { version = "0.3", features = ["lmcons"] } [[bin]] name = "whoami" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs" diff --git a/src/uu/yes/Cargo.toml b/src/uu/yes/Cargo.toml index 63960240f..aa5e8967b 100644 --- a/src/uu/yes/Cargo.toml +++ b/src/uu/yes/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.1" authors = [] license = "MIT" description = "Repeatedly output a line with all specified STRING(s), or 'y'." -build = "../#common/mkmain.rs" +build = "../../common/mkmain.rs" [lib] name = "uu_yes" @@ -20,4 +20,4 @@ default = [] [[bin]] name = "yes" -path = "../#common/uumain.rs" +path = "../../common/uumain.rs"