Use workspace package information everywhere

This commit is contained in:
Connor Fitzgerald 2025-04-10 19:57:10 -04:00
parent dde9422114
commit 45d8f42513
9 changed files with 42 additions and 43 deletions

6
Cargo.lock generated
View File

@ -946,7 +946,7 @@ dependencies = [
[[package]] [[package]]
name = "cts_runner" name = "cts_runner"
version = "0.1.0" version = "25.0.0"
dependencies = [ dependencies = [
"deno_console", "deno_console",
"deno_core", "deno_core",
@ -1844,7 +1844,7 @@ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
[[package]] [[package]]
name = "hlsl-snapshots" name = "hlsl-snapshots"
version = "0.1.0" version = "25.0.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"nanoserde", "nanoserde",
@ -2448,7 +2448,7 @@ dependencies = [
[[package]] [[package]]
name = "naga-fuzz" name = "naga-fuzz"
version = "0.0.0" version = "25.0.0"
dependencies = [ dependencies = [
"arbitrary", "arbitrary",
"cfg_aliases 0.2.1", "cfg_aliases 0.2.1",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "cts_runner" name = "cts_runner"
version = "0.1.0" version.workspace = true
authors = ["Luca Casonato <hello@lcas.dev>"] authors = ["Luca Casonato <hello@lcas.dev>"]
edition.workspace = true edition.workspace = true
description = "CTS runner for wgpu" description = "CTS runner for wgpu"

View File

@ -1,12 +1,12 @@
[package] [package]
name = "naga-cli" name = "naga-cli"
version = "25.0.0" version.workspace = true
authors = ["gfx-rs developers"] authors.workspace = true
edition = "2021" edition.workspace = true
description = "CLI for the naga shader translator and validator. Part of the wgpu project" 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" repository.workspace = true
keywords = ["shader", "SPIR-V", "GLSL", "MSL"] keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
license = "MIT OR Apache-2.0" license.workspace = true
# Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to # Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to
# copy the crates it actually uses out of the workspace, so it's meaningful for # copy the crates it actually uses out of the workspace, so it's meaningful for

View File

@ -1,14 +1,13 @@
[package] [package]
name = "naga" name = "naga"
version = "25.0.0" version.workspace = true
authors = ["gfx-rs developers"] authors.workspace = true
edition = "2021" edition.workspace = true
description = "Shader translator and validator. Part of the wgpu project" description = "Shader translator and validator. Part of the wgpu project"
repository = "https://github.com/gfx-rs/wgpu/tree/trunk/naga" repository.workspace = true
keywords = ["shader", "SPIR-V", "GLSL", "MSL"] keywords = ["shader", "SPIR-V", "GLSL", "MSL"]
license = "MIT OR Apache-2.0" license.workspace = true
exclude = ["bin/**/*", "tests/**/*", "Cargo.lock", "target/**/*"] exclude = ["bin/**/*", "tests/**/*", "Cargo.lock", "target/**/*"]
resolver = "2"
# Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to # Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to
# copy the crates it actually uses out of the workspace, so it's meaningful for # copy the crates it actually uses out of the workspace, so it's meaningful for

View File

@ -1,10 +1,10 @@
[package] [package]
name = "naga-fuzz" name = "naga-fuzz"
version = "0.0.0" version.workspace = true
authors = ["Automatically generated"] authors.workspace = true
publish = false publish = false
edition = "2018" edition.workspace = true
license = "MIT OR Apache-2.0" license.workspace = true
build = "build.rs" build = "build.rs"
[package.metadata] [package.metadata]

View File

@ -1,9 +1,9 @@
[package] [package]
name = "hlsl-snapshots" name = "hlsl-snapshots"
version = "0.1.0" version.workspace = true
edition = "2021" edition.workspace = true
publish = false publish = false
license = "MIT OR Apache-2.0" license.workspace = true
[lib] [lib]
name = "hlsl_snapshots" name = "hlsl_snapshots"

View File

@ -1,13 +1,13 @@
[package] [package]
name = "wgpu-core" name = "wgpu-core"
version = "25.0.0" version.workspace = true
authors = ["gfx-rs developers"] authors.workspace = true
edition = "2021" edition.workspace = true
description = "Core implementation logic of wgpu, the cross-platform, safe, pure-rust graphics API" description = "Core implementation logic of wgpu, the cross-platform, safe, pure-rust graphics API"
homepage = "https://wgpu.rs/" homepage.workspace = true
repository = "https://github.com/gfx-rs/wgpu" repository.workspace = true
keywords = ["graphics"] keywords.workspace = true
license = "MIT OR Apache-2.0" license.workspace = true
# Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to # Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to
# copy the crates it actually uses out of the workspace, so it's meaningful for # copy the crates it actually uses out of the workspace, so it's meaningful for

View File

@ -1,13 +1,13 @@
[package] [package]
name = "wgpu-hal" name = "wgpu-hal"
version = "25.0.0" version.workspace = true
authors = ["gfx-rs developers"] authors.workspace = true
edition = "2021" edition.workspace = true
description = "Hardware abstraction layer for wgpu, the cross-platform, safe, pure-rust graphics API" description = "Hardware abstraction layer for wgpu, the cross-platform, safe, pure-rust graphics API"
homepage = "https://wgpu.rs/" homepage.workspace = true
repository = "https://github.com/gfx-rs/wgpu" repository.workspace = true
keywords = ["graphics"] keywords.workspace = true
license = "MIT OR Apache-2.0" license.workspace = true
# Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to # Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to
# copy the crates it actually uses out of the workspace, so it's meaningful for # copy the crates it actually uses out of the workspace, so it's meaningful for

View File

@ -1,13 +1,13 @@
[package] [package]
name = "wgpu-types" name = "wgpu-types"
version = "25.0.0" version.workspace = true
authors = ["gfx-rs developers"] authors.workspace = true
edition = "2021" edition.workspace = true
description = "Common types and utilities for wgpu, the cross-platform, safe, pure-rust graphics API" description = "Common types and utilities for wgpu, the cross-platform, safe, pure-rust graphics API"
homepage = "https://wgpu.rs/" homepage.workspace = true
repository = "https://github.com/gfx-rs/wgpu" repository.workspace = true
keywords = ["graphics"] keywords.workspace = true
license = "MIT OR Apache-2.0" license.workspace = true
# Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to # Override the workspace's `rust-version` key. Firefox uses `cargo vendor` to
# copy the crates it actually uses out of the workspace, so it's meaningful for # copy the crates it actually uses out of the workspace, so it's meaningful for