We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a381476 commit 816533bCopy full SHA for 816533b
fuzz/uufuzz/src/lib.rs
@@ -388,9 +388,10 @@ pub fn compare_result(
388
389
pub fn generate_random_string(max_length: usize) -> String {
390
let mut rng = rand::rng();
391
- let valid_utf8: Vec<char> = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
392
- .chars()
393
- .collect();
+ let valid_utf8: Vec<char> =
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789🔩🪛🪓⚙️🔗🧰"
+ .chars()
394
+ .collect();
395
let invalid_utf8 = [0xC3, 0x28]; // Invalid UTF-8 sequence
396
let mut result = String::new();
397
0 commit comments