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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
1.1 KiB
TOML
Raw Normal View History

[package]
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"
readme = "README.md"
keywords = ["core", "simd", "arch", "intrinsics"]
categories = ["hardware-support", "no-std"]
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" }
[dev-dependencies]
2019-07-08 23:21:37 +02:00
stdarch-test = { version = "0.*", path = "../stdarch-test" }
[target.'cfg(all(target_arch = "x86_64", target_os = "linux"))'.dev-dependencies]
syscalls = { version = "0.6.18", default-features = false }
[lints.clippy]
too_long_first_doc_paragraph = "allow"
missing_transmute_annotations = "allow"
useless_transmute = "allow"