2017-11-20 16:58:31 +01:00
|
|
|
[package]
|
2019-01-21 16:59:10 +01:00
|
|
|
name = "core_arch"
|
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 = "`core::arch` - Rust's core library architecture-specific intrinsics."
|
2019-07-08 23:21:37 +02:00
|
|
|
homepage = "https://github.com/rust-lang/stdarch"
|
|
|
|
|
repository = "https://github.com/rust-lang/stdarch"
|
2017-11-20 16:58:31 +01:00
|
|
|
readme = "README.md"
|
2019-01-21 16:59:10 +01:00
|
|
|
keywords = ["core", "simd", "arch", "intrinsics"]
|
2017-11-20 16:58:31 +01:00
|
|
|
categories = ["hardware-support", "no-std"]
|
2022-03-17 03:55:51 -07:00
|
|
|
license = "MIT OR Apache-2.0"
|
2025-02-09 10:13:55 -08:00
|
|
|
edition = "2024"
|
2017-11-20 16:58:31 +01:00
|
|
|
|
|
|
|
|
[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" }
|
2017-11-20 16:58:31 +01:00
|
|
|
maintenance = { status = "experimental" }
|
|
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-07-08 23:21:37 +02:00
|
|
|
stdarch-test = { version = "0.*", path = "../stdarch-test" }
|
2024-07-26 01:21:01 -04:00
|
|
|
|
|
|
|
|
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dev-dependencies]
|
|
|
|
|
syscalls = { version = "0.6.18", default-features = false }
|
2024-09-22 17:15:23 +05:30
|
|
|
|
2024-09-28 00:56:02 -04:00
|
|
|
[lints.clippy]
|
|
|
|
|
too_long_first_doc_paragraph = "allow"
|
|
|
|
|
missing_transmute_annotations = "allow"
|
|
|
|
|
useless_transmute = "allow"
|