You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The crate-level docs say this crate is cross-platform, but on Windows the compilation fails with this error:
Checking futures v0.1.31
Checking chase v0.1.8 (C:\Users\fenhl\git\github.com\fenhl\chase-rs\stage)
error: could not compile `chase`
To learn more, run the command again with --verbose.
error[E0425]: cannot find function `get_file_id` in this scope
--> src\sync.rs:72:35
|
72 | let file_id = get_file_id(&file)?;
| ^^^^^^^^^^^ not found in this scope
The reason is that get_file_id is only defined on #[cfg(unix)].
The text was updated successfully, but these errors were encountered:
The crate-level docs say this crate is cross-platform, but on Windows the compilation fails with this error:
The reason is that
get_file_id
is only defined on#[cfg(unix)]
.The text was updated successfully, but these errors were encountered: