Skip to content

Commit 9b99f20

Browse files
committed
rename rustc_codegen_spirv_target_specs to rustc_codegen_spirv-target-specs
1 parent 86edfff commit 9b99f20

24 files changed

+15
-15
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ members = [
1919

2020
"crates/rustc_codegen_spirv",
2121
"crates/rustc_codegen_spirv-types",
22-
"crates/rustc_codegen_spirv_target_specs",
22+
"crates/rustc_codegen_spirv-target-specs",
2323
"crates/spirv-builder",
2424
"crates/spirv-std",
2525
"crates/spirv-std/shared",
@@ -47,7 +47,7 @@ spirv-std-macros = { path = "./crates/spirv-std/macros", version = "=0.9.0" }
4747
spirv-tools = { version = "0.11", default-features = false }
4848
rustc_codegen_spirv = { path = "./crates/rustc_codegen_spirv", version = "=0.9.0", default-features = false }
4949
rustc_codegen_spirv-types = { path = "./crates/rustc_codegen_spirv-types", version = "=0.9.0" }
50-
rustc_codegen_spirv_target_specs = { path = "./crates/rustc_codegen_spirv_target_specs", version = "=0.9.0" }
50+
rustc_codegen_spirv-target-specs = { path = "crates/rustc_codegen_spirv-target-specs", version = "=0.9.0" }
5151
tracing = "0.1"
5252
tracing-subscriber = { version = "0.3.3", features = ["env-filter", "json"] }
5353

crates/rustc_codegen_spirv_target_specs/Cargo.toml renamed to crates/rustc_codegen_spirv-target-specs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "rustc_codegen_spirv_target_specs"
2+
name = "rustc_codegen_spirv-target-specs"
33
description = "target spec json files of rust-gpu for the rustc compiler"
44
version.workspace = true
55
authors.workspace = true

crates/rustc_codegen_spirv_target_specs/README.md renamed to crates/rustc_codegen_spirv-target-specs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# `rustc_codegen_spirv_target_spec`
1+
# `rustc_codegen_spirv-target-specs`
22

33
The target spec json files of rust-gpu to hand to the rustc compiler, declaring various metadata about our codegen backend.
44

crates/rustc_codegen_spirv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ tracing-subscriber.workspace = true
6262
tracing-tree = "0.3.0"
6363

6464
# required for cargo gpu to resolve the needed target specs
65-
rustc_codegen_spirv_target_specs.workspace = true
65+
rustc_codegen_spirv-target-specs.workspace = true
6666

6767
[dev-dependencies]
6868
pretty_assertions = "1.0"

crates/spirv-builder/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ default = ["use-compiled-tools"]
2424
rustc_codegen_spirv = ["dep:rustc_codegen_spirv"]
2525
# Inclide target spec json files, allows constructing SpirvBuilder without
2626
# explicitly passing a path to the target spec json
27-
include_target_specs = ["dep:rustc_codegen_spirv_target_specs"]
27+
include_target_specs = ["dep:rustc_codegen_spirv-target-specs"]
2828
# See `rustc_codegen_spirv/Cargo.toml` for details on these features.
2929
# We add new "default" features to `use-installed-tools` and `use-compiled-tools` to keep
3030
# backwards compat with `default-features = false, features = "use-installed-tools"` setups
@@ -38,7 +38,7 @@ clap = ["dep:clap"]
3838
[dependencies]
3939
rustc_codegen_spirv = { workspace = true, optional = true }
4040
rustc_codegen_spirv-types = { workspace = true }
41-
rustc_codegen_spirv_target_specs = { workspace = true, features = ["dir_path"], optional = true }
41+
rustc_codegen_spirv-target-specs = { workspace = true, features = ["dir_path"], optional = true }
4242

4343
memchr = "2.4"
4444
raw-string = "0.3.5"

tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ use-compiled-tools = ["rustc_codegen_spirv/use-compiled-tools"]
1616
[dependencies]
1717
compiletest = { version = "0.11.2", package = "compiletest_rs" }
1818
rustc_codegen_spirv = { workspace = true }
19-
rustc_codegen_spirv_target_specs = { workspace = true, features = ["dir_path"] }
19+
rustc_codegen_spirv-target-specs = { workspace = true, features = ["dir_path"] }
2020
clap = { version = "4", features = ["derive"] }
2121
itertools = "0.10.5"

0 commit comments

Comments
 (0)