From ccb2b8adbd951f5d49609fff47159e189fcbc5b5 Mon Sep 17 00:00:00 2001 From: Juniper Tyree Date: Mon, 5 Feb 2024 07:09:08 +0000 Subject: [PATCH] Try check --- Cargo.lock | 14 +++++++------- necsim/core/Cargo.toml | 4 ++-- necsim/impls/cuda/Cargo.toml | 4 ++-- necsim/impls/no-std/Cargo.toml | 4 ++-- rustcoalescence/algorithms/cuda/Cargo.toml | 2 +- .../algorithms/cuda/cpu-kernel/Cargo.toml | 2 +- .../algorithms/cuda/gpu-kernel/Cargo.toml | 4 ++-- 7 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d5444907e..c62829a52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -402,7 +402,7 @@ dependencies = [ [[package]] name = "const-type-layout" version = "0.2.1" -source = "git+https://github.com/juntyr/const-type-layout?branch=compress#5635167dd776304fc75fa7936364e4621d9c2ade" +source = "git+https://github.com/juntyr/const-type-layout?branch=compress#51836b1b05b7ac31e74f7c4b981ea7a0fb795be2" dependencies = [ "const-type-layout-derive", ] @@ -410,7 +410,7 @@ dependencies = [ [[package]] name = "const-type-layout-derive" version = "0.2.0" -source = "git+https://github.com/juntyr/const-type-layout?branch=compress#5635167dd776304fc75fa7936364e4621d9c2ade" +source = "git+https://github.com/juntyr/const-type-layout?branch=compress#51836b1b05b7ac31e74f7c4b981ea7a0fb795be2" dependencies = [ "proc-macro-error", "proc-macro2", @@ -935,9 +935,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" [[package]] name = "miniz_oxide" -version = "0.7.1" +version = "0.7.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" +checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7" dependencies = [ "adler", ] @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "rust-cuda" version = "0.1.0" -source = "git+https://github.com/juntyr/rust-cuda?rev=44a974bd#44a974bd2b0191193b635c4254995ed7b12ea9f5" +source = "git+https://github.com/juntyr/rust-cuda?rev=3ec81181#3ec8118114eabbb1b3048af248d0439e4d250a37" dependencies = [ "const-type-layout", "final", @@ -1497,7 +1497,7 @@ dependencies = [ [[package]] name = "rust-cuda-derive" version = "0.1.0" -source = "git+https://github.com/juntyr/rust-cuda?rev=44a974bd#44a974bd2b0191193b635c4254995ed7b12ea9f5" +source = "git+https://github.com/juntyr/rust-cuda?rev=3ec81181#3ec8118114eabbb1b3048af248d0439e4d250a37" dependencies = [ "proc-macro-error", "proc-macro2", @@ -1508,7 +1508,7 @@ dependencies = [ [[package]] name = "rust-cuda-kernel" version = "0.1.0" -source = "git+https://github.com/juntyr/rust-cuda?rev=44a974bd#44a974bd2b0191193b635c4254995ed7b12ea9f5" +source = "git+https://github.com/juntyr/rust-cuda?rev=3ec81181#3ec8118114eabbb1b3048af248d0439e4d250a37" dependencies = [ "cargo_metadata", "colored", diff --git a/necsim/core/Cargo.toml b/necsim/core/Cargo.toml index f51adbd8b..522b02b57 100644 --- a/necsim/core/Cargo.toml +++ b/necsim/core/Cargo.toml @@ -20,7 +20,7 @@ contracts = "0.6.3" serde = { version = "1.0", default-features = false, features = ["derive"] } [target.'cfg(target_os = "cuda")'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive"], optional = true } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive"], optional = true } [target.'cfg(not(target_os = "cuda"))'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive", "host"], optional = true } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive", "host"], optional = true } diff --git a/necsim/impls/cuda/Cargo.toml b/necsim/impls/cuda/Cargo.toml index 5956c6a30..a10857534 100644 --- a/necsim/impls/cuda/Cargo.toml +++ b/necsim/impls/cuda/Cargo.toml @@ -15,7 +15,7 @@ contracts = "0.6.3" serde = { version = "1.0", default-features = false, features = ["derive"] } [target.'cfg(target_os = "cuda")'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive"] } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive"] } [target.'cfg(not(target_os = "cuda"))'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive", "host"] } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive", "host"] } diff --git a/necsim/impls/no-std/Cargo.toml b/necsim/impls/no-std/Cargo.toml index ce88df33a..d35c81045 100644 --- a/necsim/impls/no-std/Cargo.toml +++ b/necsim/impls/no-std/Cargo.toml @@ -30,7 +30,7 @@ fnv = { version = "1.0", default-features = false, features = [] } rand_core = "0.6" [target.'cfg(target_os = "cuda")'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive", "final"], optional = true } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive", "final"], optional = true } [target.'cfg(not(target_os = "cuda"))'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive", "final", "host"], optional = true } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive", "final", "host"], optional = true } diff --git a/rustcoalescence/algorithms/cuda/Cargo.toml b/rustcoalescence/algorithms/cuda/Cargo.toml index 26e7c9e9a..77e7beac9 100644 --- a/rustcoalescence/algorithms/cuda/Cargo.toml +++ b/rustcoalescence/algorithms/cuda/Cargo.toml @@ -23,4 +23,4 @@ thiserror = "1.0" serde = { version = "1.0", features = ["derive"] } serde_state = "0.4" serde_derive_state = "0.4" -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["host"] } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["host"] } diff --git a/rustcoalescence/algorithms/cuda/cpu-kernel/Cargo.toml b/rustcoalescence/algorithms/cuda/cpu-kernel/Cargo.toml index 9de40d95c..f603c622f 100644 --- a/rustcoalescence/algorithms/cuda/cpu-kernel/Cargo.toml +++ b/rustcoalescence/algorithms/cuda/cpu-kernel/Cargo.toml @@ -14,4 +14,4 @@ necsim-impls-no-std = { path = "../../../../necsim/impls/no-std", features = ["c necsim-impls-cuda = { path = "../../../../necsim/impls/cuda" } rustcoalescence-algorithms-cuda-gpu-kernel = { path = "../gpu-kernel" } -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["host"] } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["host"] } diff --git a/rustcoalescence/algorithms/cuda/gpu-kernel/Cargo.toml b/rustcoalescence/algorithms/cuda/gpu-kernel/Cargo.toml index 4ae3ac202..19a3aa407 100644 --- a/rustcoalescence/algorithms/cuda/gpu-kernel/Cargo.toml +++ b/rustcoalescence/algorithms/cuda/gpu-kernel/Cargo.toml @@ -17,7 +17,7 @@ necsim-impls-no-std = { path = "../../../../necsim/impls/no-std", features = ["c necsim-impls-cuda = { path = "../../../../necsim/impls/cuda" } [target.'cfg(target_os = "cuda")'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive", "device", "kernel"] } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive", "device", "kernel"] } [target.'cfg(not(target_os = "cuda"))'.dependencies] -rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "44a974bd", features = ["derive", "kernel"] } +rust-cuda = { git = "https://github.com/juntyr/rust-cuda", rev = "3ec81181", features = ["derive", "kernel"] }