Dimitris Iliopoulos
Dimitris Iliopoulos
Currently when hovering over parts of the code that have problems (errors, warnings etc.) associated with them, one needs to scroll down past the hover information to get to the...
When `OnUsageError` is set for a `cli.App` instance, one has full control of what is printed to stderr when an error is encountered. That is not the case when setting...
When generating `PyBytes` from `Vec` or `&[u8]` or `Cow` somewhat different behaviors are observed: ```rust Python::with_gil(|py| { let bytes_py = PyBytes::new_bound(py, b"foobar"); dbg!(&bytes_py); // &bytes_py = b'foobar' let bytes_vec =...
## Changes in this pull request Since `uuid` PR [#536](https://github.com/uuid-rs/uuid/pull/536) the `wasm-bindgen` feature has be renamed to `js` and since PR [#727](https://github.com/uuid-rs/uuid/pull/727), the `wasm-bindgen` dependency is optional and marked so...