diff --git a/Cargo.lock b/Cargo.lock index 6a899b5..97376ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,7 +172,7 @@ checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" [[package]] name = "cubecl-hip-sys" -version = "0.0.1" +version = "0.0.2" dependencies = [ "bindgen", "libc", diff --git a/Cargo.toml b/Cargo.toml index acf70f8..dc3eaeb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ members = [ [workspace.package] edition = "2021" -version = "0.0.1" +version = "0.0.2" license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/README.md b/README.md index 4780f34..5a42803 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This repository contains Rust bindings for AMD ROCm HIP runtime libraries used by CubeCL. ## ⚠️ Notes -These bindings are unsafe as they are just the raw generated by bindgen with no improvements. +These bindings are unsafe as they are just the raw bindings generated by bindgen with no improvements. ## Prerequisites diff --git a/crates/cubecl-hip-sys/Cargo.toml b/crates/cubecl-hip-sys/Cargo.toml index 45a7289..76c2c0e 100644 --- a/crates/cubecl-hip-sys/Cargo.toml +++ b/crates/cubecl-hip-sys/Cargo.toml @@ -1,8 +1,8 @@ [package] authors = ["Tracel Technologies Inc."] categories = ["external-ffi-bindings"] -description = "Rust bindings for AMD ROCm HIP runtime libraries." -keywords = ["ROCm", "HIP", "API", "bindings"] +description = "Rust bindings for AMD ROCm HIP runtime libraries used by CubeCL." +keywords = ["cubecl", "ROCm", "HIP", "API", "bindings"] edition.workspace = true license.workspace = true name = "cubecl-hip-sys"