]> git.proxmox.com Git - rustc.git/blame - library/portable-simd/crates/core_simd/Cargo.toml
New upstream version 1.60.0+dfsg1
[rustc.git] / library / portable-simd / crates / core_simd / Cargo.toml
CommitLineData
3c0e092e
XL
1[package]
2name = "core_simd"
3version = "0.1.0"
4edition = "2021"
5homepage = "https://github.com/rust-lang/portable-simd"
6repository = "https://github.com/rust-lang/portable-simd"
7keywords = ["core", "simd", "intrinsics"]
8categories = ["hardware-support", "no-std"]
9license = "MIT OR Apache-2.0"
10
11[features]
12default = ["std", "generic_const_exprs"]
13std = []
14generic_const_exprs = []
15
16[target.'cfg(target_arch = "wasm32")'.dev-dependencies.wasm-bindgen]
17version = "0.2"
18
19[dev-dependencies.wasm-bindgen-test]
20version = "0.3"
21
22[dev-dependencies.proptest]
23version = "0.10"
24default-features = false
25features = ["alloc"]
26
27[dev-dependencies.test_helpers]
28path = "../test_helpers"
5099ac24
FG
29
30[dev-dependencies]
31std_float = { path = "../std_float/", features = ["as_crate"] }