alamb commented on PR #812: URL: https://github.com/apache/arrow-rs-object-store/pull/812#issuecomment-5320022594
> I also get this compilation error on 1.85: > > ``` > error[E0599]: no function or associated item named `from_utf8` found for type `str` in the current scope > --> src/parse.rs:477:25 > | > 477 | let body = str::from_utf8(&body).unwrap(); > | ^^^^^^^^^ function or associated item not found in `str` > | > help: you are looking for the module in `std`, not the primitive type > | > 477 | let body = std::str::from_utf8(&body).unwrap(); > | +++++ > ``` I think the error is that the tests are not included in ``` cargo +1.85 check --all-features ``` We need to add the `--all-targets` to have the tests included too. I will make a PR to do this -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
