rust-lang/portable-simd#248: Remove default features
Now that we are thoroughly embedded in libcore, we don't need these on by default. Indeed, their presence may provide confusing results during integration attempts.
This commit is contained in:
parent
5f49d4c843
commit
a5789d17bf
@ -9,7 +9,7 @@ categories = ["hardware-support", "no-std"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[features]
|
||||
default = ["std", "generic_const_exprs"]
|
||||
default = []
|
||||
std = []
|
||||
generic_const_exprs = []
|
||||
|
||||
|
@ -9,7 +9,6 @@ macro_rules! float_rounding_test {
|
||||
type Scalar = $scalar;
|
||||
type IntScalar = $int_scalar;
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
test_helpers::test_lanes! {
|
||||
fn ceil<const LANES: usize>() {
|
||||
test_helpers::test_unary_elementwise(
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
core_simd = { path = "../core_simd" }
|
||||
core_simd = { path = "../core_simd", default-features = false }
|
||||
|
||||
[features]
|
||||
default = ["as_crate"]
|
||||
|
Loading…
x
Reference in New Issue
Block a user