Re-vendors wide 0.7 + safe_arch, restores the upstream simd-stable wiring in rapier3d/parry3d manifests and the cfg-simd source, and drops the added 'stripped build does not support SIMD' guards (upstream's simd-vs-enhanced-determinism exclusivity guard kept). Interleaved single-thread retest (min of 4): SIMD buys rapier 1.8-2.2x; box3d vs rapier-simd is now near parity — large_pyramid 1579 vs 1638 ms, joint_grid 957 vs 1008 ms (box3d ahead), many_pyramids 2389 vs 1970 ms (rapier ahead). box3d README grid updated with the honest three-column table; box3d keeps cross-arch determinism + zero deps at that speed. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
67 lines
1.2 KiB
TOML
67 lines
1.2 KiB
TOML
[package]
|
|
edition = "2018"
|
|
name = "simba"
|
|
version = "0.9.1"
|
|
authors = ["sebcrozet <developer@crozet.re>"]
|
|
build = false
|
|
autolib = false
|
|
autobins = false
|
|
autoexamples = false
|
|
autotests = false
|
|
autobenches = false
|
|
description = "SIMD algebra for Rust"
|
|
documentation = "https://docs.rs/simba"
|
|
readme = "README.md"
|
|
keywords = [
|
|
"algebra",
|
|
"simd",
|
|
"math",
|
|
]
|
|
categories = [
|
|
"science",
|
|
"mathematics",
|
|
"wasm",
|
|
"no-std",
|
|
]
|
|
license = "Apache-2.0"
|
|
repository = "https://github.com/dimforge/simba"
|
|
|
|
[features]
|
|
decimal = []
|
|
default = ["std"]
|
|
libm = ["num-traits/libm"]
|
|
partial_fixed_point_support = []
|
|
portable_simd = ["std"]
|
|
rand = []
|
|
rkyv = ["rkyv-serialize"]
|
|
rkyv-serialize = []
|
|
serde_serialize = []
|
|
std = []
|
|
wide = ["dep:wide", "wide/std"]
|
|
|
|
[lib]
|
|
name = "simba"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies.approx]
|
|
version = "0.5"
|
|
default-features = false
|
|
path = "../approx"
|
|
[dependencies.wide]
|
|
version = "0.7"
|
|
optional = true
|
|
default-features = false
|
|
path = "../wide"
|
|
[dependencies.libm_force]
|
|
version = "0.2"
|
|
optional = true
|
|
package = "libm"
|
|
path = "../libm"
|
|
[dependencies.num-complex]
|
|
version = "0.4"
|
|
default-features = false
|
|
path = "../num-complex"
|
|
[dependencies.num-traits]
|
|
version = "0.2.11"
|
|
default-features = false
|
|
path = "../num-traits"
|