65b5210bdb
This reduces compilation time
32 lines
736 B
TOML
32 lines
736 B
TOML
[package]
|
|
name = "core_simd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
homepage = "https://github.com/rust-lang/portable-simd"
|
|
repository = "https://github.com/rust-lang/portable-simd"
|
|
keywords = ["core", "simd", "intrinsics"]
|
|
categories = ["hardware-support", "no-std"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = ["as_crate"]
|
|
as_crate = []
|
|
std = []
|
|
generic_const_exprs = []
|
|
all_lane_counts = []
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen = "0.2"
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
[dev-dependencies.proptest]
|
|
version = "0.10"
|
|
default-features = false
|
|
features = ["alloc"]
|
|
|
|
[dev-dependencies.test_helpers]
|
|
path = "../test_helpers"
|
|
|
|
[dev-dependencies]
|
|
std_float = { path = "../std_float/", features = ["as_crate"] }
|