Skip to content

Commit c40f1f3

Browse files
committed
Chore: add metadata fields to Cargo.toml
resolves #9
1 parent decda87 commit c40f1f3

File tree

15 files changed

+30
-0
lines changed

15 files changed

+30
-0
lines changed

crates/cuda_builder/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ edition = "2021"
55
authors = ["Riccardo D'Ambrosio <[email protected]>", "The rust-gpu Authors"]
66
license = "MIT OR Apache-2.0"
77
description = "Builder for easily building rustc_codegen_nvvm crates"
8+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
9+
readme = "../../README.md"
810

911
[dependencies]
1012
rustc_codegen_nvvm = { version = "0.1", path = "../rustc_codegen_nvvm" }

crates/cuda_std/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
edition = "2018"
55
license = "MIT OR Apache-2.0"
66
description = "Standard library for CUDA with rustc_codegen_nvvm"
7+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
8+
readme = "../../README.md"
79

810
[dependencies]
911
vek = { version = "0.15.1", default-features = false, features = ["libm"] }

crates/cuda_std_macros/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.0"
44
edition = "2018"
55
license = "MIT OR Apache-2.0"
66
description = "Macros for cuda_std"
7+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
8+
readme = "../../README.md"
79

810
[lib]
911
proc-macro = true

crates/cust/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ authors = ["Riccardo D'Ambrosio <[email protected]>", "Brook Heisler <broo
66
edition = "2018"
77
license = "MIT OR Apache-2.0"
88
description = "High level bindings to the CUDA Driver API"
9+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
10+
readme = "../../README.md"
911

1012
[dependencies]
1113
cust_raw = { path = "../cust_raw", version = "0.11.2"}

crates/cust_derive/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ authors = ["Brook Heisler <[email protected]>", "Riccardo D'Ambrosio <rdamb
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
77
description = "Macros for cust"
8+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
9+
readme = "../../README.md"
810

911
[lib]
1012
proc-macro = true

crates/cust_raw/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.11.2"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Low level bindings to the CUDA Driver API"
7+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
8+
readme = "../../README.md"
79

810
[build-dependencies]
911
find_cuda_helper = { path = "../find_cuda_helper", version = "0.1" }

crates/find_cuda_helper/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ version = "0.1.2"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Helper crate for searching for CUDA libraries"
7+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
8+
readme = "../../README.md"
79

810
[dependencies]
911
glob = "0.3.0"

crates/gpu_rand/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ authors = ["The Rand Project Developers", "The Rust CUDA Project Developers"]
55
license = "MIT OR Apache-2.0"
66
edition = "2021"
77
description = "GPU-friendly random number generators for the Rust CUDA Project"
8+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
9+
readme = "../../README.md"
810

911
[dependencies]
1012
rand_core = { version = "0.6" }

crates/nvvm/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ authors = ["Riccardo D'Ambrosio <[email protected]>"]
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
77
description = "High level bindings to libnvvm"
8+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
9+
readme = "../../README.md"
810

911
[build-dependencies]
1012
find_cuda_helper = { version = "0.1", path = "../find_cuda_helper" }

crates/optix/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name = "optix"
33
version = "0.1.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
6+
repository = "https://github.com/Rust-GPU/Rust-CUDA"
7+
readme = "../../README.md"
68

79
[dependencies]
810
optix_sys = { version = "0.1", path = "../optix_sys" }

0 commit comments

Comments
 (0)