Closed xStrom closed 2 weeks ago
The following command now passes:
cargo check -p fontique --locked --no-default-features --features libm --target x86_64-unknown-none
The key was removing the use of not(any(target_vendor="apple", target_family="windows")) to include std using dependencies, which triggers with x86_64-unknown-none.
not(any(target_vendor="apple", target_family="windows"))
std
x86_64-unknown-none
I also synced the dependency conditionals with what the code expects.
This is progress towards #86.
The following command now passes:
The key was removing the use of
not(any(target_vendor="apple", target_family="windows"))
to includestd
using dependencies, which triggers withx86_64-unknown-none
.I also synced the dependency conditionals with what the code expects.
This is progress towards #86.