Skip to content

Commit

Permalink
Merge pull request #84 from remilauzier/master
Browse files Browse the repository at this point in the history
Update approx to 0.5 with some small fixes
  • Loading branch information
yoanlcq authored Mar 20, 2022
2 parents 122b902 + aaa41a8 commit 50a5ca3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Generic 2D-3D math swiss army knife for game engines, with SIMD s
documentation = "https://docs.rs/vek"
keywords = ["vector", "matrix", "simd", "quaternion", "bezier"]
categories = [ "algorithms", "data-structures", "no-std", "science" ]
license = "MIT/Apache-2.0"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/yoanlcq/vek"
name = "vek"
Expand Down Expand Up @@ -53,7 +53,7 @@ libm = ["num-traits/libm"]
rustc_version = "0.4"

[dependencies]
approx = { version = "0.4.0", default-features = false }
approx = { version = "0.5.0", default-features = false }
num-traits = { version = "0.2.14", default-features = false }
num-integer = { version = "0.1.44", default-features = false }
static_assertions = "1.1.0"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@
//#![cfg_attr(feature="repr_simd", allow(improper_ctypes)]
//#![cfg_attr(feature="repr_simd", feature(link_llvm_intrinsics)]
#![cfg_attr(all(nightly, test), feature(test))]
#![recursion_limit = "256"]

extern crate core as std;

Expand Down

0 comments on commit 50a5ca3

Please sign in to comment.