Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable the `unicode-perl` feature flag on `regex` crate dependency in `neqo-server` crate. The following regex makes use of the feature: ``` rust Regex::new(r"GET +/(\S+)(?:\r)?\n").unwrap() ``` Without the feature, the QUIC Interop tests panic with: ``` server | thread 'main' panicked at neqo-server/src/old_https.rs:140:49: server | called `Result::unwrap()` on an `Err` value: Syntax( server | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ server | regex parse error: server | GET +/(\S+)(?:\r)?\n server | ^^ server | error: Unicode-aware Perl class not found (make sure the unicode-perl feature is enabled) server | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ server | ) ```
- Loading branch information