diff --git a/src/uu/whoami/src/whoami.rs b/src/uu/whoami/src/whoami.rs index 5fedeec9f..45e2845da 100644 --- a/src/uu/whoami/src/whoami.rs +++ b/src/uu/whoami/src/whoami.rs @@ -18,9 +18,6 @@ extern crate uucore; mod platform; -// force a re-build whenever Cargo.toml changes -const _CARGO_TOML: &str = include_str!("../Cargo.toml"); - pub fn uumain(args: Vec) -> i32 { let app = app_from_crate!(); diff --git a/src/uu/yes/src/yes.rs b/src/uu/yes/src/yes.rs index ccc9b3992..a19edc6f6 100644 --- a/src/uu/yes/src/yes.rs +++ b/src/uu/yes/src/yes.rs @@ -21,9 +21,6 @@ use std::borrow::Cow; use std::io::{self, Write}; use uucore::zero_copy::ZeroCopyWriter; -// force a re-build whenever Cargo.toml changes -const _CARGO_TOML: &str = include_str!("../Cargo.toml"); - // it's possible that using a smaller or larger buffer might provide better performance on some // systems, but honestly this is good enough const BUF_SIZE: usize = 16 * 1024;