Compare commits

..

No commits in common. "master" and "v1.0.1" have entirely different histories.

View File

@ -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();