Skip to content

Commit ebb3576

Browse files
authored
Rename windows-ecma335 to windows-metadata (#3601)
1 parent a0c7eba commit ebb3576

Some content is hidden

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

64 files changed

+32
-29
lines changed

.github/workflows/clippy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ jobs:
3636
run: cargo clippy -p windows-collections
3737
- name: Check windows-core
3838
run: cargo clippy -p windows-core
39-
- name: Check windows-ecma335
40-
run: cargo clippy -p windows-ecma335
4139
- name: Check windows-future
4240
run: cargo clippy -p windows-future
4341
- name: Check windows-implement
@@ -46,6 +44,8 @@ jobs:
4644
run: cargo clippy -p windows-interface
4745
- name: Check windows-link
4846
run: cargo clippy -p windows-link
47+
- name: Check windows-metadata
48+
run: cargo clippy -p windows-metadata
4949
- name: Check windows-numerics
5050
run: cargo clippy -p windows-numerics
5151
- name: Check windows-registry

.github/workflows/msrv.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,6 @@ jobs:
3838
run: rustup update --no-self-update 1.74 && rustup default 1.74
3939
- name: Check windows-core
4040
run: cargo check -p windows-core --all-features
41-
- name: Rust version
42-
run: rustup update --no-self-update 1.82 && rustup default 1.82
43-
- name: Check windows-ecma335
44-
run: cargo check -p windows-ecma335 --all-features
4541
- name: Rust version
4642
run: rustup update --no-self-update 1.74 && rustup default 1.74
4743
- name: Check windows-future
@@ -58,6 +54,10 @@ jobs:
5854
run: rustup update --no-self-update 1.71 && rustup default 1.71
5955
- name: Check windows-link
6056
run: cargo check -p windows-link --all-features
57+
- name: Rust version
58+
run: rustup update --no-self-update 1.82 && rustup default 1.82
59+
- name: Check windows-metadata
60+
run: cargo check -p windows-metadata --all-features
6161
- name: Rust version
6262
run: rustup update --no-self-update 1.74 && rustup default 1.74
6363
- name: Check windows-numerics

.github/workflows/no-default-features.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ jobs:
3434
run: cargo check -p windows-collections --no-default-features
3535
- name: Check windows-core
3636
run: cargo check -p windows-core --no-default-features
37-
- name: Check windows-ecma335
38-
run: cargo check -p windows-ecma335 --no-default-features
3937
- name: Check windows-future
4038
run: cargo check -p windows-future --no-default-features
4139
- name: Check windows-implement
@@ -44,6 +42,8 @@ jobs:
4442
run: cargo check -p windows-interface --no-default-features
4543
- name: Check windows-link
4644
run: cargo check -p windows-link --no-default-features
45+
- name: Check windows-metadata
46+
run: cargo check -p windows-metadata --no-default-features
4747
- name: Check windows-numerics
4848
run: cargo check -p windows-numerics --no-default-features
4949
- name: Check windows-registry

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,6 @@ jobs:
215215
run: cargo test -p test_dispatch --target ${{ matrix.target }}
216216
- name: Test test_does_not_return
217217
run: cargo test -p test_does_not_return --target ${{ matrix.target }}
218-
- name: Test test_ecma335
219-
run: cargo test -p test_ecma335 --target ${{ matrix.target }}
220218
- name: Test test_enums
221219
run: cargo test -p test_enums --target ${{ matrix.target }}
222220
- name: Test test_error
@@ -263,10 +261,10 @@ jobs:
263261
run: cargo test -p test_no_std --target ${{ matrix.target }}
264262
- name: Test test_no_use
265263
run: cargo test -p test_no_use --target ${{ matrix.target }}
266-
- name: Clean
267-
run: cargo clean
268264
- name: Test test_noexcept
269265
run: cargo test -p test_noexcept --target ${{ matrix.target }}
266+
- name: Clean
267+
run: cargo clean
270268
- name: Test test_not_dll
271269
run: cargo test -p test_not_dll --target ${{ matrix.target }}
272270
- name: Test test_numerics
@@ -315,6 +313,8 @@ jobs:
315313
run: cargo test -p test_string_param --target ${{ matrix.target }}
316314
- name: Test test_strings
317315
run: cargo test -p test_strings --target ${{ matrix.target }}
316+
- name: Test test_struct_size
317+
run: cargo test -p test_struct_size --target ${{ matrix.target }}
318318
- name: Test test_structs
319319
run: cargo test -p test_structs --target ${{ matrix.target }}
320320
- name: Test test_sys
@@ -371,8 +371,6 @@ jobs:
371371
run: cargo test -p windows-collections --target ${{ matrix.target }}
372372
- name: Test windows-core
373373
run: cargo test -p windows-core --target ${{ matrix.target }}
374-
- name: Test windows-ecma335
375-
run: cargo test -p windows-ecma335 --target ${{ matrix.target }}
376374
- name: Test windows-future
377375
run: cargo test -p windows-future --target ${{ matrix.target }}
378376
- name: Test windows-implement
@@ -381,6 +379,8 @@ jobs:
381379
run: cargo test -p windows-interface --target ${{ matrix.target }}
382380
- name: Test windows-link
383381
run: cargo test -p windows-link --target ${{ matrix.target }}
382+
- name: Test windows-metadata
383+
run: cargo test -p windows-metadata --target ${{ matrix.target }}
384384
- name: Test windows-numerics
385385
run: cargo test -p windows-numerics --target ${{ matrix.target }}
386386
- name: Test windows-registry

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ windows = { version = "0.61.1", path = "crates/libs/windows", default-features =
3939
windows-bindgen = { version = "0.61.0", path = "crates/libs/bindgen", default-features = false }
4040
windows-collections = { version = "0.2.0", path = "crates/libs/collections", default-features = false }
4141
windows-core = { version = "0.61.0", path = "crates/libs/core", default-features = false }
42-
windows-ecma335 = { version = "0.0.0", path = "crates/libs/ecma335", default-features = false }
4342
windows-future = { version = "0.2.0", path = "crates/libs/future", default-features = false }
4443
windows-implement = { version = "0.60.0", path = "crates/libs/implement", default-features = false }
4544
windows-interface = { version = "0.59.1", path = "crates/libs/interface", default-features = false }
4645
windows-link = { version = "0.1.1", path = "crates/libs/link", default-features = false }
46+
windows-metadata = { version = "0.0.0", path = "crates/libs/metadata", default-features = false }
4747
windows-numerics = { version = "0.2.0", path = "crates/libs/numerics", default-features = false }
4848
windows-registry = { version = "0.5.1", path = "crates/libs/registry", default-features = false }
4949
windows-result = { version = "0.3.2", path = "crates/libs/result", default-features = false }
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
2-
name = "windows-ecma335"
2+
name = "windows-metadata"
33
version = "0.0.0"
44
authors = ["Microsoft"]
55
edition = "2021"
66
rust-version = "1.82"
77
license = "MIT OR Apache-2.0"
8-
description = "Low-level metadata writer for ECMA-335"
8+
description = "Low-level metadata library for ECMA-335"
99
repository = "https://github.com/microsoft/windows-rs"
1010
readme = "readme.md"
1111
categories = ["os::windows-apis"]

0 commit comments

Comments
 (0)