rust/library/stdarch/Cargo.toml
Alex Crichton b8bcdd93c6 Always test intrinsics unconditionally
This commit alters the test suite to unconditionally compile and run all tests,
regardless of the ambient target features enabled. This then uses a new
convenience macro, `#[simd_test]`, to guard all tests with the appropriate
`cfg_feature_enabled!` and also enable the `#[target_feature]` appropriately.
2017-09-26 14:38:58 -07:00

22 lines
585 B
TOML

[package]
name = "stdsimd"
version = "0.0.2" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = "Experiments for adding SIMD support to Rust's standard library."
documentation = "https://docs.rs/stdsimd"
homepage = "https://github.com/BurntSushi/stdsimd"
repository = "https://github.com/BurntSushi/stdsimd"
readme = "README.md"
keywords = ["std", "simd", "intrinsics", "sse", "avx"]
license = "MIT/Apache-2.0"
[profile.release]
debug = true
opt-level = 3
[profile.bench]
debug = true
opt-level = 3
[dev-dependencies]
stdsimd-test = { path = "stdsimd-test" }