Files
rust/library/stdarch/crates/std_detect/Cargo.toml

36 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-01-22 17:49:02 +01:00
documentation = "https://docs.rs/std_detect"
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/Apache-2.0"
2019-02-21 15:47:07 +01:00
edition = "2015"
[badges]
2019-08-02 16:45:14 +02:00
azure-devops = { project = "stdarch", pipeline = "rust-lang2.stdarch" }
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]
libc = { version = "0.2", optional = true, default-features = false }
cfg-if = "0.1"
[dev-dependencies]
auxv = "0.3.3"
cupid = "0.6.0"
[features]
default = [ "std_detect_dlsym_getauxval", "std_detect_file_io" ]
std_detect_file_io = []
std_detect_dlsym_getauxval = [ "libc" ]