Skip to content

Commit 7d0cc04

Browse files
committed
fix some crates descriptions
1 parent 866fa2e commit 7d0cc04

File tree

5 files changed

+8
-127
lines changed

5 files changed

+8
-127
lines changed

crates/minislang/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
[package]
22
name = "minislang"
3+
authors = ["Sébastien Crozet <[email protected]>"]
4+
description = "Small wrapper around the shader-slang binding"
5+
repository = "https://github.com/dimforge/slang-hal"
36
version = "0.1.0"
47
edition = "2024"
58
license = "MIT OR Apache-2.0"

crates/slang-hal-derive/Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
[package]
22
name = "slang-hal-derive"
33
authors = ["Sébastien Crozet <[email protected]>"]
4-
description = "Proc-macro for composable WGSL shaders."
5-
homepage = "https://wgmath.rs"
6-
repository = "https://github.com/dimforge/wgmath"
4+
description = "Proc-macro for Slang shaders."
5+
repository = "https://github.com/dimforge/slang-hal"
76
version = "0.1.0"
87
edition = "2024"
98
license = "MIT OR Apache-2.0"

crates/slang-hal/CHANGELOG.md

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +0,0 @@
1-
## Unreleased
2-
3-
### Added
4-
5-
- Add `Shader::shader_module` to generate and return the shader’s `ShaderModule`.
6-
7-
### Changed
8-
9-
- Rename `Shader::set_absolute_path` to `Shader::set_wgsl_path`.
10-
- Rename `Shader::absolute_path` to `Shader::wgsl_path`.
11-
- Workgroup memory automatic zeroing is now **disabled** by default due to its significant
12-
performance impact.
13-
14-
## v0.2.2
15-
16-
### Fixed
17-
18-
- Fix crash in `HotReloadState` when targetting wasm.
19-
20-
## v0.2.1
21-
22-
### Fixed
23-
24-
- Fix build when targeting wasm.
25-
26-
## v0.2.0
27-
28-
### Added
29-
30-
- Add support for hot-reloading, see [#1](https://github.com/dimforge/wgmath/pull/1). This includes breaking changes to
31-
the `Shader` trait.
32-
- Add support for shader overwriting, see [#1](https://github.com/dimforge/wgmath/pull/1).

crates/slang-hal/Cargo.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
[package]
2-
name = "slang-hal" # TODO: keep this name or rename to something like "slang-hal"?
2+
name = "slang-hal"
33
authors = ["Sébastien Crozet <[email protected]>"]
4-
description = "Utilities and abstractions for composable WGSL shaders."
5-
homepage = "https://wgmath.rs"
6-
repository = "https://github.com/dimforge/wgmath"
7-
readme = "README.md"
4+
description = "Abstractions for running Slang shaders with Rust."
5+
repository = "https://github.com/dimforge/slang-hal"
86
version = "0.1.0"
97
edition = "2024"
108
license = "MIT OR Apache-2.0"

crates/slang-hal/README.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

0 commit comments

Comments
 (0)