diff --git a/Cargo.lock b/Cargo.lock index ceb24ad..3d4675a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -81,12 +81,6 @@ dependencies = [ "bytemuck", ] -[[package]] -name = "hamming" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65043da274378d68241eb9a8f8f8aa54e349136f7b8e12f63e3ef44043cc30e1" - [[package]] name = "heck" version = "0.5.0" @@ -113,7 +107,6 @@ dependencies = [ "enum_dispatch", "fasthash", "glam", - "primal", ] [[package]] @@ -134,15 +127,6 @@ dependencies = [ "autocfg", ] -[[package]] -name = "num-integer" -version = "0.1.46" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" -dependencies = [ - "num-traits", -] - [[package]] name = "num-traits" version = "0.2.19" @@ -164,52 +148,6 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e" -[[package]] -name = "primal" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1e5f354948532e6017fc91f9a5ff5ba1be0dabd3a0c9e9c417969cd4c1ad6e8" -dependencies = [ - "primal-check", - "primal-estimate", - "primal-sieve", -] - -[[package]] -name = "primal-bit" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "252429dbb8aeacc3233df500dc3a6a367bf28eb3a711272884d7540a7b636055" -dependencies = [ - "hamming", -] - -[[package]] -name = "primal-check" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08" -dependencies = [ - "num-integer", -] - -[[package]] -name = "primal-estimate" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a432100a0b3a61085e75b5f89e9f42de73c0acb7dea5038b893697918105d822" - -[[package]] -name = "primal-sieve" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e982796d82203351983d3602a8d6372d1d7894e86960047ba0d4b7426a5edd3" -dependencies = [ - "primal-bit", - "primal-estimate", - "smallvec", -] - [[package]] name = "proc-macro2" version = "1.0.95" @@ -334,12 +272,6 @@ version = "3.0.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "58f57ca1d128a43733fd71d583e837b1f22239a37ebea09cde11d8d9a9080f47" -[[package]] -name = "smallvec" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" - [[package]] name = "syn" version = "2.0.100" diff --git a/core/Cargo.toml b/core/Cargo.toml index 0cb7aef..fd419bc 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -15,6 +15,3 @@ glam = "0.30.2" [features] fast-math = ["glam/fast-math"] bytemuck = ["dep:bytemuck", "glam/bytemuck"] - -[build-dependencies] -primal = "0.3.3"