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}`.
27 lines
611 B
TOML
27 lines
611 B
TOML
[package]
|
|
name = "stdsimd_examples"
|
|
version = "0.0.0"
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>",
|
|
"Andrew Gallant <jamslam@gmail.com>",
|
|
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>",
|
|
]
|
|
description = "Examples of the stdsimd crate."
|
|
|
|
[dependencies]
|
|
core_arch = { path = "../crates/core_arch" }
|
|
std_detect = { path = "../crates/std_detect" }
|
|
quickcheck = "0.8"
|
|
rand = "0.6"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
rand = { version = "0.6", features = ["wasm-bindgen"] }
|
|
|
|
[[bin]]
|
|
name = "hex"
|
|
path = "hex.rs"
|
|
|
|
[[example]]
|
|
name = "wasm"
|
|
crate-type = ["cdylib"]
|
|
path = "wasm.rs"
|