pub fn parse_csv_line(line: &str, delimiter: char) -> Vec<String>
Parses a line of a CSV file into a vector of values split by the delimiter. Handles quoted values that contain the delimiter.