rust/crates/core_simd/Cargo.toml
2021-03-22 14:00:02 -07:00

28 lines
667 B
TOML

[package]
name = "core_simd"
version = "0.1.0"
authors = ["Caleb Zulawski <caleb.zulawski@gmail.com>"]
edition = "2018"
homepage = "https://github.com/rust-lang/stdsimd"
repository = "https://github.com/rust-lang/stdsimd"
keywords = ["core", "simd", "intrinsics"]
categories = ["hardware-support", "no-std"]
license = "MIT OR Apache-2.0"
[features]
default = ["std"]
std = []
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen]
version = "0.2"
[dev-dependencies.wasm-bindgen-test]
version = "0.3"
[dev-dependencies.proptest]
version = "0.10"
default-features = false
features = ["alloc"]
[dev-dependencies.test_helpers]
path = "../test_helpers"