Files
rust/library/std_detect/Cargo.toml

35 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "std_detect"
2019-04-17 14:22:08 +02:00
version = "0.1.5"
2018-11-09 13:28:09 +01:00
authors = [
"Alex Crichton <alex@alexcrichton.com>",
"Andrew Gallant <jamslam@gmail.com>",
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
]
2019-01-30 11:02:56 +01:00
description = "`std::detect` - Rust's standard library run-time CPU feature detection."
2019-07-08 23:21:37 +02:00
homepage = "https://github.com/rust-lang/stdarch"
repository = "https://github.com/rust-lang/stdarch"
readme = "README.md"
keywords = ["std", "run-time", "feature", "detection"]
categories = ["hardware-support"]
license = "MIT OR Apache-2.0"
2025-02-09 10:13:55 -08:00
edition = "2024"
[badges]
2019-07-08 23:21:37 +02:00
is-it-maintained-issue-resolution = { repository = "rust-lang/stdarch" }
is-it-maintained-open-issues = { repository = "rust-lang/stdarch" }
maintenance = { status = "experimental" }
[dependencies]
core = { version = "1.0.0", package = 'rustc-std-workspace-core' }
alloc = { version = "1.0.0", package = 'rustc-std-workspace-alloc' }
2024-04-19 16:46:32 -04:00
[target.'cfg(not(windows))'.dependencies]
libc = { version = "0.2.0", optional = true, default-features = false }
[features]
default = []
std_detect_file_io = [ "libc" ]
std_detect_dlsym_getauxval = [ "libc" ]
2025-05-22 12:36:55 +05:30
std_detect_env_override = [ "libc" ]