rust/crates/std_float/Cargo.toml
Jubilee a5789d17bf
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.
2022-02-28 19:56:31 -08:00

14 lines
291 B
TOML

[package]
name = "std_float"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
core_simd = { path = "../core_simd", default-features = false }
[features]
default = ["as_crate"]
as_crate = []