rust/crates/core_simd/Cargo.toml

29 lines
671 B
TOML
Raw Normal View History

2020-09-23 01:41:42 +02: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-02 05:42:10 +02:00
keywords = ["core", "simd", "intrinsics"]
categories = ["hardware-support", "no-std"]
license = "MIT OR Apache-2.0"
2021-03-07 03:56:01 +01:00
[features]
default = ["std", "generic_const_exprs"]
2021-03-07 03:56:01 +01:00
std = []
generic_const_exprs = []
2021-03-07 03:56:01 +01:00
2021-03-07 04:00:39 +01:00
[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen]
version = "0.2"
[dev-dependencies.wasm-bindgen-test]
version = "0.3"
2021-01-03 22:09:26 +01:00
[dev-dependencies.proptest]
version = "0.10"
default-features = false
features = ["alloc"]
[dev-dependencies.test_helpers]
path = "../test_helpers"