Skip to content

Commit f76a232

Browse files
committed
Add version to cust_raw dependencies for crates.io publishing
1 parent 0575113 commit f76a232

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

crates/blastoff/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/Rust-GPU/rust-cuda"
88
[dependencies]
99
bitflags = "2.8"
1010
cust = { version = "0.3", path = "../cust", features = ["impl_num_complex"] }
11-
cust_raw = { path = "../cust_raw", features = ["cublas"] }
11+
cust_raw = { version = "0.11.3", path = "../cust_raw", features = ["cublas"] }
1212
num-complex = "0.4.6"
1313
half = { version = "2.4.1", optional = true }
1414

crates/cudnn-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ links = "cudnn"
99
build = "build/main.rs"
1010

1111
[dependencies]
12-
cust_raw = { path = "../cust_raw", default-features = false, features = ["driver"] }
12+
cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["driver"] }
1313

1414
[build-dependencies]
1515
bindgen = "0.71.1"

crates/cust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ readme = "../../README.md"
1414

1515
[dependencies]
1616
cust_core = { path = "../cust_core", version = "0.1.0"}
17-
cust_raw = { path = "../cust_raw", default-features = false, features = ["driver"] }
17+
cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["driver"] }
1818
bitflags = "2.8"
1919
cust_derive = { path = "../cust_derive", version = "0.2" }
2020
glam = { version = "0.30", features=["cuda"], optional = true }

crates/nvvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ repository = "https://github.com/Rust-GPU/rust-cuda"
99
readme = "../../README.md"
1010

1111
[dependencies]
12-
cust_raw = { path = "../cust_raw", default-features = false, features = ["nvvm"] }
12+
cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["nvvm"] }
1313
strum = { version = "0.27", features = ["derive"] }

crates/optix-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ links = "optix"
99
build = "build/main.rs"
1010

1111
[dependencies]
12-
cust_raw = { path = "../cust_raw", default-features = false, features = ["driver"] }
12+
cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["driver"] }
1313

1414
[build-dependencies]
1515
bindgen = "0.71.1"

crates/optix/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = ["Anders Langlands <[email protected]>", "Riccardo D'Ambrosio
99

1010
[dependencies]
1111
cust = { version = "0.3", path = "../cust", features=["impl_mint"] }
12-
cust_raw = { path = "../cust_raw", features=["driver"] }
12+
cust_raw = { version = "0.11.3", path = "../cust_raw", features=["driver"] }
1313
cfg-if = "1.0.0"
1414
bitflags = "2.9.0"
1515
glam = { version = "0.30", features=["cuda", "libm"], default-features=false, optional=true }

crates/ptx_compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ repository = "https://github.com/Rust-GPU/rust-cuda"
88
readme = "../../README.md"
99

1010
[dependencies]
11-
cust_raw = { path = "../cust_raw", default-features = false, features = ["nvptx-compiler"] }
11+
cust_raw = { version = "0.11.3", path = "../cust_raw", default-features = false, features = ["nvptx-compiler"] }

0 commit comments

Comments
 (0)