diff --git a/Cargo.lock b/Cargo.lock index 366a456d5..cfeccc308 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1146,9 +1146,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.14" +version = "0.2.15" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "js-sys", @@ -1636,9 +1636,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.153" +version = "0.2.154" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd" +checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" [[package]] name = "libloading" @@ -1970,9 +1970,9 @@ dependencies = [ [[package]] name = "num-traits" -version = "0.2.18" +version = "0.2.19" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" dependencies = [ "autocfg", "libm", @@ -2231,9 +2231,9 @@ dependencies = [ [[package]] name = "parry2d-f64" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c5cac7755db75178a59417976c6780dc8cec3718a8990f204572a2e04bfacdf" +checksum = "d60b64d968b00773ec0898eea3ba21ecb357adabfa9a407d04c1ebd19197865c" dependencies = [ "approx 0.5.1", "arrayvec", @@ -2253,9 +2253,9 @@ dependencies = [ [[package]] name = "parry3d-f64" -version = "0.14.0" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f7e437357387a9ad38dc6a6b8dbf6f4d5acd0df3cf11e3517417d107f38c713" +checksum = "f565dc473dc6140b331efbe345479921f6870ea2737e3e375b2f88d3977ddc43" dependencies = [ "approx 0.5.1", "arrayvec", @@ -2808,18 +2808,18 @@ dependencies = [ [[package]] name = "serde" -version = "1.0.199" +version = "1.0.200" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c9f6e76df036c77cd94996771fb40db98187f096dd0b9af39c6c6e452ba966a" +checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f" dependencies = [ "serde_derive", ] [[package]] name = "serde_derive" -version = "1.0.199" +version = "1.0.200" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11bd257a6541e141e42ca6d24ae26f7714887b47e89aa739099104c7e4d3b7fc" +checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb" dependencies = [ "proc-macro2", "quote", diff --git a/crates/fj-math/Cargo.toml b/crates/fj-math/Cargo.toml index fc7ade8e7..70059bdcd 100644 --- a/crates/fj-math/Cargo.toml +++ b/crates/fj-math/Cargo.toml @@ -17,7 +17,7 @@ workspace = true approx = "0.5.1" decorum = "0.3.1" nalgebra = "0.32.5" -num-traits = "0.2.18" -parry2d-f64 = "0.14.0" -parry3d-f64 = "0.14.0" +num-traits = "0.2.19" +parry2d-f64 = "0.15.0" +parry3d-f64 = "0.15.0" robust = "1.1.0" diff --git a/crates/fj-viewer/Cargo.toml b/crates/fj-viewer/Cargo.toml index 266187ac2..7562787ee 100644 --- a/crates/fj-viewer/Cargo.toml +++ b/crates/fj-viewer/Cargo.toml @@ -39,5 +39,5 @@ features = ["webgl"] # We don't depend on `getrandom` directly, but we need this to enable the `js` # feature when cross-compiling to WASM. Otherwise, `getrandom` will not build. [target.'cfg(target_arch = "wasm32")'.dependencies.getrandom] -version = "0.2.14" +version = "0.2.15" features = ["js"] diff --git a/tools/automator/Cargo.toml b/tools/automator/Cargo.toml index 9685b866d..befbba156 100644 --- a/tools/automator/Cargo.toml +++ b/tools/automator/Cargo.toml @@ -10,7 +10,7 @@ chrono = "0.4.38" map-macro = "0.3.0" octocrab = "0.38.0" semver = "1.0.22" -serde = "1.0.199" +serde = "1.0.200" serde_json = "1.0.116" tracing = "0.1.40" url = "2.5.0" diff --git a/tools/release-operator/Cargo.toml b/tools/release-operator/Cargo.toml index 99dd91b17..dbaeb5644 100644 --- a/tools/release-operator/Cargo.toml +++ b/tools/release-operator/Cargo.toml @@ -29,5 +29,5 @@ features = ["std", "derive", "env"] default_features = false [dependencies.serde] -version = "1.0.199" +version = "1.0.200" features = ["derive"]