]> git.lizzy.rs Git - rust.git/blob - library/portable-simd/crates/core_simd/Cargo.toml
Rollup merge of #97739 - a2aaron:let_underscore, r=estebank
[rust.git] / library / portable-simd / crates / core_simd / Cargo.toml
1 [package]
2 name = "core_simd"
3 version = "0.1.0"
4 edition = "2021"
5 homepage = "https://github.com/rust-lang/portable-simd"
6 repository = "https://github.com/rust-lang/portable-simd"
7 keywords = ["core", "simd", "intrinsics"]
8 categories = ["hardware-support", "no-std"]
9 license = "MIT OR Apache-2.0"
10
11 [features]
12 default = ["as_crate"]
13 as_crate = []
14 std = []
15 generic_const_exprs = []
16
17 [target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen]
18 version = "0.2"
19
20 [dev-dependencies.wasm-bindgen-test]
21 version = "0.3"
22
23 [dev-dependencies.proptest]
24 version = "0.10"
25 default-features = false
26 features = ["alloc"]
27
28 [dev-dependencies.test_helpers]
29 path = "../test_helpers"
30
31 [dev-dependencies]
32 std_float = { path = "../std_float/", features = ["as_crate"] }