roc/cli
Ayaz Hafiz ef877364d4
Allow invalid UTF-8 for roc format argument
Presumably with a new version of clap that was introduced, we must now
specify that invalid-utf8 is permitted in order to run `matches.values_of_os`
as we do on line 174 of cli/src/main.rs:

```rust
        Some((CMD_FORMAT, matches)) => {
            let maybe_values = matches.values_of_os(DIRECTORY_OR_FILES);
```

Otherwise, clap panics:

```
thread 'main' panicked at 'Must use `Arg::allow_invalid_utf8` with `_os` lookups at `DIRECTORY_OR_FILES`', cli/src/main.rs:174:40
```
2022-05-05 09:04:34 -04:00
..
benches Merge branch 'trunk' of github.com:rtfeldman/roc into editor_sound 2021-10-05 16:53:18 +02:00
src Allow invalid UTF-8 for roc format argument 2022-05-05 09:04:34 -04:00
tests Add breakout to examples under test 2022-04-23 19:45:53 -04:00
Cargo.toml updated clap 2022-05-04 14:41:02 +02:00