diff --git a/README.md b/README.md index ef586cea0a..00728076af 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,10 @@ For an overview of all the components in the gfx-rs ecosystem, see [the big pict ## Getting Started +### Play with our Examples + +Go to [https://wgpu.rs/examples/] to play with our examples in your browser. Requires a browser supporting WebGPU for the WebGPU examples. + ### Rust Rust examples can be found at [wgpu/examples](examples). You can run the examples on native with `cargo run --bin wgpu-examples `. See the [list of examples](examples). diff --git a/naga-cli/Cargo.toml b/naga-cli/Cargo.toml index 02f68cc02a..3e41bca58d 100644 --- a/naga-cli/Cargo.toml +++ b/naga-cli/Cargo.toml @@ -3,7 +3,7 @@ name = "naga-cli" version = "23.0.0" authors = ["gfx-rs developers"] edition = "2021" -description = "Shader translation command line tool" +description = "CLI for the naga shader translator and validator. Part of the wgpu project" repository = "https://github.com/gfx-rs/wgpu/tree/trunk/naga-cli" keywords = ["shader", "SPIR-V", "GLSL", "MSL"] license = "MIT OR Apache-2.0" diff --git a/naga/Cargo.toml b/naga/Cargo.toml index 3c26288973..1e2bde7133 100644 --- a/naga/Cargo.toml +++ b/naga/Cargo.toml @@ -3,7 +3,7 @@ name = "naga" version = "23.0.0" authors = ["gfx-rs developers"] edition = "2021" -description = "Shader translation infrastructure" +description = "Shader translator of validator. Part of the wgpu project" repository = "https://github.com/gfx-rs/wgpu/tree/trunk/naga" keywords = ["shader", "SPIR-V", "GLSL", "MSL"] license = "MIT OR Apache-2.0" diff --git a/wgpu-core/Cargo.toml b/wgpu-core/Cargo.toml index 31606b9b62..6f2be185c9 100644 --- a/wgpu-core/Cargo.toml +++ b/wgpu-core/Cargo.toml @@ -3,7 +3,7 @@ name = "wgpu-core" version = "23.0.1" authors = ["gfx-rs developers"] edition = "2021" -description = "WebGPU core logic on wgpu-hal" +description = "Core implementation logic of wgpu, the cross-platform, safe, pure-rust graphics API" homepage = "https://wgpu.rs/" repository = "https://github.com/gfx-rs/wgpu" keywords = ["graphics"] diff --git a/wgpu-hal/Cargo.toml b/wgpu-hal/Cargo.toml index b175b9905a..968c65be60 100644 --- a/wgpu-hal/Cargo.toml +++ b/wgpu-hal/Cargo.toml @@ -3,7 +3,7 @@ name = "wgpu-hal" version = "23.0.1" authors = ["gfx-rs developers"] edition = "2021" -description = "WebGPU hardware abstraction layer" +description = "Hardware abstraction layer for wgpu, the cross-platform, safe, pure-rust graphics API" homepage = "https://wgpu.rs/" repository = "https://github.com/gfx-rs/wgpu" keywords = ["graphics"] diff --git a/wgpu-types/Cargo.toml b/wgpu-types/Cargo.toml index 3dc6d7f799..5caf34eec9 100644 --- a/wgpu-types/Cargo.toml +++ b/wgpu-types/Cargo.toml @@ -3,7 +3,7 @@ name = "wgpu-types" version = "23.0.0" authors = ["gfx-rs developers"] edition = "2021" -description = "WebGPU types" +description = "Common types and utilities for wgpu, the cross-platform, safe, pure-rust graphics API" homepage = "https://wgpu.rs/" repository = "https://github.com/gfx-rs/wgpu" keywords = ["graphics"] diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index d05731958d..ca757e122c 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -3,7 +3,7 @@ name = "wgpu" version.workspace = true authors.workspace = true edition.workspace = true -description = "Rusty WebGPU API wrapper" +description = "Cross-platform, safe, pure-rust graphics API" homepage.workspace = true repository.workspace = true keywords.workspace = true