diff --git a/crates/blastoff/Cargo.toml b/crates/blastoff/Cargo.toml index 869bbfca..1a5f31fb 100644 --- a/crates/blastoff/Cargo.toml +++ b/crates/blastoff/Cargo.toml @@ -8,7 +8,7 @@ repository = "https://github.com/Rust-GPU/rust-cuda" [dependencies] bitflags = "2.8" cust = { version = "0.3", path = "../cust", features = ["impl_num_complex"] } -cust_raw = { path = "../cust_raw", features = ["cublas"] } +cust_raw = { version = "0.11.3", path = "../cust_raw", features = ["cublas"] } num-complex = "0.4.6" half = { version = "2.4.1", optional = true } diff --git a/crates/cudnn-sys/Cargo.toml b/crates/cudnn-sys/Cargo.toml index dbedaecb..a088b86e 100644 --- a/crates/cudnn-sys/Cargo.toml +++ b/crates/cudnn-sys/Cargo.toml @@ -9,7 +9,7 @@ links = "cudnn" build = "build/main.rs" [dependencies] -cust_raw = { path = "../cust_raw", default-features = false, features = ["driver"] } +cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["driver"] } [build-dependencies] bindgen = "0.71.1" diff --git a/crates/cust/Cargo.toml b/crates/cust/Cargo.toml index 3e59f386..7febbbd6 100644 --- a/crates/cust/Cargo.toml +++ b/crates/cust/Cargo.toml @@ -14,7 +14,7 @@ readme = "../../README.md" [dependencies] cust_core = { path = "../cust_core", version = "0.1.0"} -cust_raw = { path = "../cust_raw", default-features = false, features = ["driver"] } +cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["driver"] } bitflags = "2.8" cust_derive = { path = "../cust_derive", version = "0.2" } glam = { version = "0.30", features=["cuda"], optional = true } diff --git a/crates/nvvm/Cargo.toml b/crates/nvvm/Cargo.toml index 3498a286..eef6987d 100644 --- a/crates/nvvm/Cargo.toml +++ b/crates/nvvm/Cargo.toml @@ -9,5 +9,5 @@ repository = "https://github.com/Rust-GPU/rust-cuda" readme = "../../README.md" [dependencies] -cust_raw = { path = "../cust_raw", default-features = false, features = ["nvvm"] } +cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["nvvm"] } strum = { version = "0.27", features = ["derive"] } diff --git a/crates/optix-sys/Cargo.toml b/crates/optix-sys/Cargo.toml index 562690be..404ebffc 100644 --- a/crates/optix-sys/Cargo.toml +++ b/crates/optix-sys/Cargo.toml @@ -9,7 +9,7 @@ links = "optix" build = "build/main.rs" [dependencies] -cust_raw = { path = "../cust_raw", default-features = false, features = ["driver"] } +cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["driver"] } [build-dependencies] bindgen = "0.71.1" diff --git a/crates/optix/Cargo.toml b/crates/optix/Cargo.toml index 67b3c95d..adacc24b 100644 --- a/crates/optix/Cargo.toml +++ b/crates/optix/Cargo.toml @@ -9,7 +9,7 @@ authors = ["Anders Langlands ", "Riccardo D'Ambrosio [dependencies] cust = { version = "0.3", path = "../cust", features=["impl_mint"] } -cust_raw = { path = "../cust_raw", features=["driver"] } +cust_raw = { version = "0.11.3", path = "../cust_raw", features=["driver"] } cfg-if = "1.0.0" bitflags = "2.9.0" glam = { version = "0.30", features=["cuda", "libm"], default-features=false, optional=true } diff --git a/crates/ptx_compiler/Cargo.toml b/crates/ptx_compiler/Cargo.toml index dfc9c66e..effb3263 100644 --- a/crates/ptx_compiler/Cargo.toml +++ b/crates/ptx_compiler/Cargo.toml @@ -8,4 +8,4 @@ repository = "https://github.com/Rust-GPU/rust-cuda" readme = "../../README.md" [dependencies] -cust_raw = { path = "../cust_raw", default-features = false, features = ["nvptx-compiler"] } +cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["nvptx-compiler"] }