Skip to content

Commit

Permalink
feat:v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ltpp-universe committed Jan 19, 2025
1 parent 67f42c9 commit 5c617ba
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bin-encrypt-decrypt"
version = "2.2.2"
version = "2.2.3"
edition = "2021"
authors = ["ltpp-universe <[email protected]>"]
license = "MIT"
Expand Down
24 changes: 12 additions & 12 deletions src/crypt_decrypt/cfg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,36 +30,36 @@ fn test_crypt_decrypt() {
OutputBuilder::new()
.endl(true)
.text(&format!("charset: {}", charset))
.text_bg_color(ColorType::Use(Color::Blue))
.text_color(ColorType::Use(Color::Yellow))
.text_blod(true)
.bg_color(ColorType::Use(Color::Blue))
.color(ColorType::Use(Color::Yellow))
.blod(true)
.build(),
)
.add(
OutputBuilder::new()
.endl(true)
.text(&format!("test word: {}", test_str))
.text_bg_color(ColorType::Use(Color::Yellow))
.text_color(ColorType::Use(Color::Blue))
.text_blod(true)
.bg_color(ColorType::Use(Color::Yellow))
.color(ColorType::Use(Color::Blue))
.blod(true)
.build(),
)
.add(
OutputBuilder::new()
.endl(true)
.text(&format!("encode_str: {}", encode_str))
.text_bg_color(ColorType::Use(Color::Cyan))
.text_color(ColorType::Use(Color::Yellow))
.text_blod(true)
.bg_color(ColorType::Use(Color::Cyan))
.color(ColorType::Use(Color::Yellow))
.blod(true)
.build(),
)
.add(
OutputBuilder::new()
.endl(true)
.text(&format!("decode_str: {}", decode_str))
.text_bg_color(ColorType::Use(Color::Green))
.text_color(ColorType::Use(Color::Yellow))
.text_blod(true)
.bg_color(ColorType::Use(Color::Green))
.color(ColorType::Use(Color::Yellow))
.blod(true)
.build(),
)
.run();
Expand Down

0 comments on commit 5c617ba

Please sign in to comment.