]> git.proxmox.com Git - rustc.git/blob - library/portable-simd/crates/core_simd/Cargo.toml
New upstream version 1.58.1+dfsg1
[rustc.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 = ["std", "generic_const_exprs"]
13 std = []
14 generic_const_exprs = []
15
16 [target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen]
17 version = "0.2"
18
19 [dev-dependencies.wasm-bindgen-test]
20 version = "0.3"
21
22 [dev-dependencies.proptest]
23 version = "0.10"
24 default-features = false
25 features = ["alloc"]
26
27 [dev-dependencies.test_helpers]
28 path = "../test_helpers"