-
Notifications
You must be signed in to change notification settings - Fork 159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compilation error in async-fs on Windows #209
Comments
This is really strange. What is your |
I was using the previous version 1.45.2 and when updating (was keeping my
Windows the same as there was some issues reported) things started to work.
It looks like this is on me. I'll close the issue.
…On Wed, Sep 16, 2020 at 8:20 AM Stjepan Glavina ***@***.***> wrote:
This is really strange. What is your rustc --version?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#209 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADUPHJ4W6HX6HYXBKTQS5E3SGDJS5ANCNFSM4RO7OKYQ>
.
|
ghost
closed this as completed
Sep 16, 2020
I've encounter this as well, which minimum version of rust do we need? |
@Geobert 1.46.0 |
The PR that fixed this in the standard library: rust-lang/rust#74074 |
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I develop my stuff on Windows and MacOS and with the latest update Windows side started to cause troubles when pulling in async-fs. I was wondering if anybody else has seen this.
error[E0053]: method
security_qos_flags
has an incompatible type for trait--> C:\Users\XXXX.cargo\registry\src\github.com-1ecc6299db9ec823\async-fs-1.3.0\src\lib.rs:1465:5
|
1465 | fn security_qos_flags(&mut self, flags: u32) -> &mut Self {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct
std::fs::OpenOptions
, found structOpenOptions
|
= note: expected fn pointer
fn(&mut OpenOptions, _) -> &mut std::fs::OpenOptions
found fn pointer
fn(&mut OpenOptions, _) -> &mut OpenOptions
The text was updated successfully, but these errors were encountered: