rust/crates/core_simd/Cargo.toml

34 lines
772 B
TOML
Raw Normal View History

2020-09-22 18:41:42 -05:00
[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"
2020-10-01 22:42:10 -05:00
keywords = ["core", "simd", "intrinsics"]
categories = ["hardware-support", "no-std"]
license = "MIT OR Apache-2.0"
2021-03-06 20:56:01 -06:00
[features]
default = ["as_crate"]
as_crate = []
2021-03-06 20:56:01 -06:00
std = []
generic_const_exprs = []
all_lane_counts = []
2021-03-06 20:56:01 -06:00
2021-03-06 21:00:39 -06:00
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen]
version = "0.2"
[dev-dependencies.wasm-bindgen-test]
version = "0.3"
2021-01-03 15:09:26 -06:00
[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"] }