]> git.lizzy.rs Git - rust.git/blob - crates/core_simd/Cargo.toml
Remove remaining usage of aliases
[rust.git] / crates / core_simd / Cargo.toml
1 [package]
2 name = "core_simd"
3 version = "0.1.0"
4 authors = ["Caleb Zulawski <caleb.zulawski@gmail.com>"]
5 edition = "2018"
6 homepage = "https://github.com/rust-lang/stdsimd"
7 repository = "https://github.com/rust-lang/stdsimd"
8 keywords = ["core", "simd", "intrinsics"]
9 categories = ["hardware-support", "no-std"]
10 license = "MIT OR Apache-2.0"
11
12 [features]
13 default = ["std", "const_evaluatable_checked"]
14 std = []
15 const_evaluatable_checked = []
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"