From e574ac50b84722d3d4aee8748381cd9437d94c56 Mon Sep 17 00:00:00 2001 From: Gabriel de Quadros Ligneul Date: Mon, 4 Nov 2024 11:22:37 -0300 Subject: [PATCH] Remove debug println --- main/src/project.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/main/src/project.rs b/main/src/project.rs index 45cfa65..4df27d1 100644 --- a/main/src/project.rs +++ b/main/src/project.rs @@ -264,10 +264,6 @@ pub fn hash_files( cfg: BuildConfig, ) -> Result<[u8; 32]> { let mut keccak = Keccak::v256(); - println!( - "> {}", - String::from_utf8(cargo_version_output.into()).unwrap() - ); keccak.update(cargo_version_output); if cfg.opt_level == OptLevel::Z { keccak.update(&[0]);