Skip to content

Commit 0f3948d

Browse files
authored
Move out spirv-tools to separate repo (#237)
* Nuke spirv-tools * Swap to use published spirv-tools crate
1 parent e261b88 commit 0f3948d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+7
-6233
lines changed

.gitattributes

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
11
# configure GitHub linguist (language bar) https://github.com/github/linguist#overrides
22
docs/* linguist-documentation
3-
crates/spirv-tools-sys/spirv-headers/* linguist-vendored
4-
crates/spirv-tools-sys/spirv-tools/* linguist-vendored
5-
crates/spirv-tools-sys/generated/* linguist-generated

.github/workflows/clippy.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,6 @@ function clippy_no_features() {
2828
}
2929

3030
# Core crates
31-
clippy crates/spirv-tools-sys
32-
clippy crates/spirv-tools
3331
clippy crates/rustc_codegen_spirv
3432
clippy crates/spirv-builder
3533

.github/workflows/docs.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,5 @@ function doc() {
1818

1919
# Core crates only!
2020
cargo doc --manifest-path "crates/spirv-std/Cargo.toml"
21-
doc crates/spirv-tools-sys
22-
doc crates/spirv-tools
2321
doc crates/rustc_codegen_spirv
2422
doc crates/spirv-builder

.github/workflows/test.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ function cargo_test_no_features() {
3737
}
3838

3939
# Core crates
40-
cargo_test crates/spirv-tools-sys
41-
cargo_test crates/spirv-tools
4240
cargo_test crates/rustc_codegen_spirv
4341
cargo_test crates/spirv-builder
4442

.gitmodules

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

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ members = [
77
"examples/shaders/sky-shader",
88
"examples/shaders/simplest-shader",
99
"examples/shaders/compute-shader",
10+
1011
"crates/rustc_codegen_spirv",
1112
"crates/spirv-builder",
1213
"crates/spirv-std",
13-
"crates/spirv-tools",
14-
"crates/spirv-tools-sys",
1514
]

crates/rustc_codegen_spirv/Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,10 @@ use-compiled-tools = ["spirv-tools/use-compiled-tools"]
2929
[dependencies]
3030
bimap = "0.5"
3131
rspirv = { git = "https://github.com/gfx-rs/rspirv.git", rev = "f11f8797bd4df2d1d22cf10767b39a5119c57551" }
32+
spirv-tools = { version = "0.1.0", default-features = false }
3233
tar = "0.4.30"
3334
topological-sort = "0.1"
3435

35-
[dependencies.spirv-tools]
36-
version = "0.1.0"
37-
path = "../spirv-tools"
38-
default-features = false
39-
4036
[dev-dependencies]
4137
pipe = "0.3"
4238
pretty_assertions = "0.6"

crates/spirv-tools-sys/Cargo.toml

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

0 commit comments

Comments
 (0)