Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ jobs:
run: cargo clippy -p test_overloads --tests
- name: Check test_overloads_client
run: cargo clippy -p test_overloads_client --tests
- name: Check test_package
run: cargo clippy -p test_package --tests
- name: Check test_query_signature
run: cargo clippy -p test_query_signature --tests
- name: Check test_readme
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,8 @@ jobs:
run: cargo test -p test_overloads --target ${{ matrix.target }}
- name: Test test_overloads_client
run: cargo test -p test_overloads_client --target ${{ matrix.target }}
- name: Test test_package
run: cargo test -p test_package --target ${{ matrix.target }}
- name: Test test_query_signature
run: cargo test -p test_query_signature --target ${{ matrix.target }}
- name: Test test_readme
Expand Down Expand Up @@ -357,10 +359,10 @@ jobs:
run: cargo test -p tool_license --target ${{ matrix.target }}
- name: Test tool_merge
run: cargo test -p tool_merge --target ${{ matrix.target }}
- name: Test tool_msvc
run: cargo test -p tool_msvc --target ${{ matrix.target }}
- name: Clean
run: cargo clean
- name: Test tool_msvc
run: cargo test -p tool_msvc --target ${{ matrix.target }}
- name: Test tool_standalone
run: cargo test -p tool_standalone --target ${{ matrix.target }}
- name: Test tool_test_all
Expand Down
1 change: 1 addition & 0 deletions crates/libs/bindgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
description = "Code generator for Windows metadata"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[dependencies]
windows-threading = { workspace = true }
Expand Down
1 change: 1 addition & 0 deletions crates/libs/collections/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
description = "Windows collection types"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[dependencies]
windows-core = { workspace = true }
Expand Down
1 change: 0 additions & 1 deletion crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-core"
version = "0.61.2"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/libs/cppwinrt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "cppwinrt"
version = "0.3.2"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions crates/libs/future/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
description = "Windows async types"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[dependencies]
windows-core = { workspace = true }
Expand Down
3 changes: 2 additions & 1 deletion crates/libs/implement/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows-implement"
version = "0.60.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
description = "The implement macro for the windows crate"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[dependencies]
proc-macro2 = { workspace = true }
Expand Down
3 changes: 2 additions & 1 deletion crates/libs/interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows-interface"
version = "0.59.1"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
description = "The interface macro for the windows crate"
repository = "https://github.com/microsoft/windows-rs"
categories = ["os::windows-apis"]
readme = "readme.md"

[dependencies]
proc-macro2 = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/link/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
[package]
name = "windows-link"
version = "0.1.3"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.71"
license = "MIT OR Apache-2.0"
description = "Linking for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[lints]
workspace = true
1 change: 0 additions & 1 deletion crates/libs/metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-metadata"
version = "0.59.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions crates/libs/numerics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ license = "MIT OR Apache-2.0"
description = "Windows numeric types"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[dependencies]
windows-core = { workspace = true }
Expand Down
1 change: 0 additions & 1 deletion crates/libs/registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-registry"
version = "0.5.3"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/libs/result/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-result"
version = "0.3.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/libs/services/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-services"
version = "0.25.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/libs/strings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-strings"
version = "0.4.2"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-sys"
version = "0.60.2"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/targets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
[package]
name = "windows-targets"
version = "0.53.3"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import libs for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[lints]
workspace = true
Expand Down
1 change: 0 additions & 1 deletion crates/libs/threading/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-threading"
version = "0.1.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/libs/version/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[package]
name = "windows-version"
version = "0.1.4"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.74"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 0 additions & 1 deletion crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
[package]
name = "windows"
version = "0.61.3"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.82"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions crates/samples/csharp/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "csharp_client"
version = "0.0.0"
edition = "2021"
publish = false

[dependencies.csharp_component]
path = "../component"
1 change: 1 addition & 0 deletions crates/samples/csharp/component/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "csharp_component"
version = "0.0.0"
edition = "2021"
publish = false

[lib]
crate-type = ["cdylib"]
Expand Down
3 changes: 2 additions & 1 deletion crates/targets/aarch64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_aarch64_gnullvm"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/aarch64_gnullvm/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/targets/aarch64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_aarch64_msvc"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/aarch64_msvc/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/targets/i686_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_i686_gnu"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/i686_gnu/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/targets/i686_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_i686_gnullvm"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/i686_gnullvm/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/targets/i686_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_i686_msvc"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/i686_msvc/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/targets/x86_64_gnu/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_x86_64_gnu"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/x86_64_gnu/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/targets/x86_64_gnullvm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_x86_64_gnullvm"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/x86_64_gnullvm/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/targets/x86_64_msvc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "windows_x86_64_msvc"
version = "0.53.0"
authors = ["Microsoft"]
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
description = "Import lib for Windows"
repository = "https://github.com/microsoft/windows-rs"
readme = "readme.md"
categories = ["os::windows-apis"]

[package.metadata.docs.rs]
default-target = "x86_64-pc-windows-msvc"
Expand Down
3 changes: 3 additions & 0 deletions crates/targets/x86_64_msvc/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Import libs for Windows

See [windows-targets](https://crates.io/crates/windows-targets) for more information.
3 changes: 2 additions & 1 deletion crates/tests/libs/implement_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "test_implement_core"
version = "0.1.0"
version = "0.0.0"
edition = "2021"
publish = false

[lib]
doc = false
Expand Down
3 changes: 2 additions & 1 deletion crates/tests/misc/no_std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
[package]
name = "test_no_std"
version = "0.1.0"
version = "0.0.0"
edition = "2021"
publish = false

[lib]
doc = false
Expand Down
Loading
Loading