Author: Kedap Summary: Fix the problem with compilation in outdate versions of rust --- a/src/core_funcions.rs 2021-09-29 13:25:40.248455519 -0500 +++ b/core_funcions.rs 2021-09-29 16:03:46.198414493 -0500 @@ -281,7 +281,7 @@ let depen_arr = &adi_paquete.dependencias; //Selecionando los gestores instalados - for gestor in catalogo { + for gestor in catalogo.iter() { let comando = Command::new("bash") .arg("-c") .arg(gestor) @@ -368,7 +368,7 @@ let mut gestores = Vec::new(); //Selecionando los gestores instalados - for gestor in catalogo { + for gestor in catalogo.iter() { let comando = Command::new("bash") .arg("-c") .arg(gestor)