removed useless printings, made binary's output very long and hard to track, next time just have shit printed only when necessary

This commit is contained in:
2026-06-20 19:16:53 +03:00
parent cd3566120d
commit 6ce6d3aa5e
2 changed files with 4 additions and 4 deletions
+3 -1
View File
@@ -1,7 +1,9 @@
[workspace]
resolver = "3"
members = [
"boxy-cli",
"binary-testing",
]
resolver = "3"
[workspace.package]
edition = "2024"
+1 -3
View File
@@ -11,9 +11,7 @@ fn main() {
box1.add_text_sgmt("Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.", "#ffff", BoxAlign::Center);
box1.add_text_sgmt("Hello Theree", "#00ffff", BoxAlign::Center);
box1.set_padding(BoxPad::from_tldr(1, 2, 3, 4), BoxPad::uniform(0));
println!("{:#?}", box1);
// Post-line insert check
println!("{:?}", box1);
// println!("{:?}", box1);
println!("\nTEXTBOX:");
let start = Instant::now();
box1.display();