From 8c505484eaa817bc06312b48290d80de031d4f08 Mon Sep 17 00:00:00 2001 From: Gly Date: Tue, 21 Nov 2023 18:38:12 +0100 Subject: [PATCH 1/2] remove debug print --- src/utils/split_bytes.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/utils/split_bytes.rs b/src/utils/split_bytes.rs index ac7e017..8a15f08 100644 --- a/src/utils/split_bytes.rs +++ b/src/utils/split_bytes.rs @@ -29,9 +29,6 @@ where let complete = match pos_last_separator_found { Some(pos_last_separator) => { let pos_last_separator = bytes.len() - pos_last_separator; - unsafe { - println!("pos_last_separator: {}", String::from_utf8_unchecked(bytes.slice(..pos_last_separator).to_vec())); - } let mut current = Vec::new(); std::mem::swap(&mut current, &mut self.rest); current.append(&mut bytes.slice(..pos_last_separator).to_vec()); From 0fa061e53984972488a7ea7350b8dab9b481e242 Mon Sep 17 00:00:00 2001 From: Gly Date: Tue, 21 Nov 2023 18:38:33 +0100 Subject: [PATCH 2/2] update aio version iv forgot, sori c: --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4dbaef3..910839e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -39,7 +39,7 @@ dependencies = [ [[package]] name = "aio-cli" -version = "0.8.0" +version = "0.8.2" dependencies = [ "aio-cargo-info", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index eb28085..0aeffe2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "aio-cli" description = "Streamlined AI Terminal Interactions" -version = "0.8.0" +version = "0.8.2" edition = "2021" authors = ["Gabin Lefranc "] readme = "README.md"