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
While std_detect::detect::features() is declared as pub, it is not exposed in std and the latest version of std_detect available on crates.io (0.1.5, 4 years ago) does not contain this function.
To access this function, one must depend on the git repository.
Would it be possible to release a new version of std_detect on crates.io? or expose std_detect::detect::features() in std like other functions of this crate?
The text was updated successfully, but these errors were encountered:
I have a cargo subcommand that builds multiple versions of the same binary, each with a different CPU features set, merged into a single binary. At runtime it runs the optimized version based on the list of CPU features supported by the host.
I rely on std_detect::detect::features() to know the CPU features supported at runtime.
While
std_detect::detect::features()
is declared aspub
, it is not exposed instd
and the latest version ofstd_detect
available on crates.io (0.1.5, 4 years ago) does not contain this function.To access this function, one must depend on the git repository.
Would it be possible to release a new version of
std_detect
on crates.io? or exposestd_detect::detect::features()
instd
like other functions of this crate?The text was updated successfully, but these errors were encountered: