2020-09-22 19:41:42 -04:00
|
|
|
[package]
|
|
|
|
name = "core_simd"
|
|
|
|
version = "0.1.0"
|
2021-09-29 13:07:27 -07:00
|
|
|
edition = "2021"
|
2021-07-27 19:59:50 -07:00
|
|
|
homepage = "https://github.com/rust-lang/portable-simd"
|
|
|
|
repository = "https://github.com/rust-lang/portable-simd"
|
2020-10-01 23:42:10 -04:00
|
|
|
keywords = ["core", "simd", "intrinsics"]
|
|
|
|
categories = ["hardware-support", "no-std"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
2020-10-03 16:36:51 +10:00
|
|
|
|
2021-03-06 21:56:01 -05:00
|
|
|
[features]
|
2022-07-20 17:23:46 -07:00
|
|
|
default = ["as_crate"]
|
|
|
|
as_crate = []
|
2021-03-06 21:56:01 -05:00
|
|
|
std = []
|
2021-09-08 20:01:16 -04:00
|
|
|
generic_const_exprs = []
|
2022-07-29 16:12:24 -07:00
|
|
|
all_lane_counts = []
|
2021-03-06 21:56:01 -05:00
|
|
|
|
2023-03-26 12:56:35 +02:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
|
|
wasm-bindgen = "0.2"
|
|
|
|
wasm-bindgen-test = "0.3"
|
2021-01-03 16:09:26 -05:00
|
|
|
|
|
|
|
[dev-dependencies.proptest]
|
|
|
|
version = "0.10"
|
|
|
|
default-features = false
|
|
|
|
features = ["alloc"]
|
|
|
|
|
|
|
|
[dev-dependencies.test_helpers]
|
|
|
|
path = "../test_helpers"
|
2021-12-21 15:29:29 -08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
std_float = { path = "../std_float/", features = ["as_crate"] }
|