rust/library/stdarch/Cargo.toml
Alex Crichton 6fbab9af44 Add a test for x86 runtime support
Make sure we agree with the `cupid` crate
2017-09-26 14:58:41 -07:00

23 lines
599 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" }
cupid = "0.3"