Rust 1.27 stablized a variety of cpu intrinsics, including SIMD on x86/64 platforms. This commit moves to using those intrinsics for the optimized Float4 implementation. This means Psychopath now compiles on stable Rust with all optimizations. Yay!
13 lines
220 B
TOML
13 lines
220 B
TOML
[package]
|
|
name = "math3d"
|
|
version = "0.1.0"
|
|
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "math3d"
|
|
path = "src/lib.rs"
|
|
|
|
# Local crate dependencies
|
|
[dependencies.float4]
|
|
path = "../float4" |