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
Hi Marcos! Out of curiosity, why is this crate specified as Unix only? I spent some time reading through the code, and don't see anything jumping out at me that would break on Windows machine. Is there something I'm missing that's limiting it to Unix?
The text was updated successfully, but these errors were encountered:
This was marked as Unix only because I use the UNIX-specific symlink function.
Windows has two types of symlinks, and I didn't bother to understand their differences.
It's been a thing with my projects as well, sometimes I cannot reliably guarantee that stuff will work on Windows because I don't have a Windows system.
I could put the function that uses that os::symlink behind a cfg(Unix) check tho 🤔 and it should compile fine.
Hi Marcos! Out of curiosity, why is this crate specified as Unix only? I spent some time reading through the code, and don't see anything jumping out at me that would break on Windows machine. Is there something I'm missing that's limiting it to Unix?
The text was updated successfully, but these errors were encountered: