Compare commits
No commits in common. "master" and "v1.0.1" have entirely different histories.
@ -21,7 +21,7 @@ fn main() {
|
||||
// Disallowed_chars is an optional argument
|
||||
let disallowed_chars: Option<&String> = args.get(2);
|
||||
|
||||
let allowed_chars: &str = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-=`~!@#$%^&*()_+[]\\{}|;':,./<>?";
|
||||
let allowed_chars: String = String::from("abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-=`~!@#$%^&*()_+[]\\{}|;':,./<>?");
|
||||
|
||||
let mut allowed_chars_set: HashSet<char> = allowed_chars.chars().collect();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user