progval commented on PR #812:
URL:
https://github.com/apache/arrow-rs-object-store/pull/812#issuecomment-5061268463
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();
| +++++
```
--
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]