rust/library/stdarch/Cargo.toml
gnzlbg 11c624e488 Refactor stdsimd
This commit:

* renames `coresimd` to `core_arch` and `stdsimd` to `std_detect`

* `std_detect` does no longer depend on `core_arch` - it is a freestanding
  `no_std` library that only depends on `core` - it is renamed to `std_detect`

* moves the top-level coresimd and stdsimd directories into the appropriate
  crates/... directories - this simplifies creating crate.io releases of these crates

* moves the top-level `coresimd` and `stdsimd` sub-directories into their
  corresponding crates in `crates/{core_arch, std_detect}`.
2019-01-22 17:04:25 +01:00

20 lines
286 B
TOML

[workspace]
members = [
"crates/stdsimd-verify",
"crates/core_arch",
"crates/std_detect",
"examples/"
]
exclude = [
"crates/wasm-assert-instr-tests"
]
[profile.release]
debug = true
opt-level = 3
incremental = true
[profile.bench]
debug = 1
opt-level = 3
incremental = true