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

View File

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

View File

@ -1,12 +1,12 @@
[package]
name = "naga-cli"
version = "25.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
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"]
license = "MIT OR Apache-2.0"
license.workspace = true
# 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

View File

@ -1,14 +1,13 @@
[package]
name = "naga"
version = "25.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
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"]
license = "MIT OR Apache-2.0"
license.workspace = true
exclude = ["bin/**/*", "tests/**/*", "Cargo.lock", "target/**/*"]
resolver = "2"
# 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

View File

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

View File

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

View File

@ -1,13 +1,13 @@
[package]
name = "wgpu-core"
version = "25.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
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"]
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
license.workspace = true
# 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

View File

@ -1,13 +1,13 @@
[package]
name = "wgpu-hal"
version = "25.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
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"]
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
license.workspace = true
# 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

View File

@ -1,13 +1,13 @@
[package]
name = "wgpu-types"
version = "25.0.0"
authors = ["gfx-rs developers"]
edition = "2021"
version.workspace = true
authors.workspace = true
edition.workspace = true
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"]
license = "MIT OR Apache-2.0"
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
license.workspace = true
# 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