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
👋 I use this project for zerus. I noticed different output from my zerus and cargo vendor. This is (I think) due to me not setting the rustc--cfg to a certain os during my operation. But I wonder, if there is a good way of ignoring the target field when generating from cargo metadata?
I think for the following, this means I want to ignore the following target and treat this as a required dependency. "target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))",`
👋 I use this project for zerus. I noticed different output from my
zerus
andcargo vendor
. This is (I think) due to me not setting therustc
--cfg
to a certain os during my operation. But I wonder, if there is a good way of ignoring thetarget
field when generating fromcargo metadata
?I think for the following, this means I want to ignore the following target and treat this as a required dependency.
"target": "cfg(all(any(target_arch = \"x86_64\", target_arch = \"arm64ec\"), target_env = \"msvc\", not(windows_raw_dylib)))",`
Here is my code.
https://github.com/wcampbell0x2a/zerus/blob/eb851801378ba2b3be4a87debe8712690b07cad4/src/main.rs#L76
The text was updated successfully, but these errors were encountered: