1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-13 18:47:58 +00:00

cleanup(yes, whoami): remove some old workaround to force cargo rebuilds

This commit is contained in:
Sylvestre Ledru 2020-05-06 23:39:49 +02:00
parent a93d007cde
commit f44e5465b8
2 changed files with 0 additions and 6 deletions

View file

@ -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<String>) -> i32 {
let app = app_from_crate!();

View file

@ -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;