Crates.io | safe_arch |
lib.rs | safe_arch |
version | |
source | src |
created_at | 2020-04-29 02:53:57.692152+00 |
updated_at | 2024-12-21 14:53:27.25882+00 |
description | Crate that exposes `core::arch` safely via `#[cfg()]`. |
homepage | |
repository | https://github.com/Lokathor/safe_arch |
max_upload_size | |
id | 235203 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
Exposes arch-specific intrinsics as safe function.
pub
field) and given appropriate trait
impls such as From
, Into
, Default
, etc.All function and macro availability is done purely at compile time via
#[cfg()]
attributes on the various modules. If a CPU feature isn't enabled for
the build then those functions or macros won't be available. If you'd like to
determine what CPU features are available at runtime and then call different
code accordingly, this crate is not for you.
See the crate docs for more details.