Skip to content

Commit

Permalink
internal
Browse files Browse the repository at this point in the history
  • Loading branch information
kennykerr committed Feb 28, 2024
1 parent 2d750e8 commit c560eee
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion crates/libs/bindgen/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-targets]
version = "0.52.3"
version = "0.52.4"

[dev-dependencies.windows-bindgen]
version = "0.53.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52.3"
version = "0.52.4"
path = "../targets"

[dependencies.windows-result]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/registry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52.3"
version = "0.52.4"
path = "../targets"

[dependencies.windows-result]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/result/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52.3"
version = "0.52.4"
path = "../targets"

[dev-dependencies.windows-bindgen]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ targets = []
all-features = true

[dependencies.windows-targets]
version = "0.52.3"
version = "0.52.4"
path = "../targets"

[features]
Expand Down
14 changes: 7 additions & 7 deletions crates/libs/targets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ readme = "readme.md"
workspace = true

[target.'cfg(all(target_arch = "x86", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.52.3" }
windows_i686_msvc = { path = "../../targets/i686_msvc", version = "0.52.4" }

[target.'cfg(all(target_arch = "x86_64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.52.3" }
windows_x86_64_msvc = { path = "../../targets/x86_64_msvc", version = "0.52.4" }

[target.'cfg(all(target_arch = "aarch64", target_env = "msvc", not(windows_raw_dylib)))'.dependencies]
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.52.3" }
windows_aarch64_msvc = { path = "../../targets/aarch64_msvc", version = "0.52.4" }

[target.'cfg(all(target_arch = "x86", target_env = "gnu", not(windows_raw_dylib)))'.dependencies]
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.52.3" }
windows_i686_gnu = { path = "../../targets/i686_gnu", version = "0.52.4" }

[target.'cfg(all(target_arch = "x86_64", target_env = "gnu", not(target_abi = "llvm"), not(windows_raw_dylib)))'.dependencies]
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.52.3" }
windows_x86_64_gnu = { path = "../../targets/x86_64_gnu", version = "0.52.4" }

[target.x86_64-pc-windows-gnullvm.dependencies]
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.52.3" }
windows_x86_64_gnullvm = { path = "../../targets/x86_64_gnullvm", version = "0.52.4" }

[target.aarch64-pc-windows-gnullvm.dependencies]
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.52.3" }
windows_aarch64_gnullvm = { path = "../../targets/aarch64_gnullvm", version = "0.52.4" }
2 changes: 1 addition & 1 deletion crates/libs/targets/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Start by adding the following to your Cargo.toml file:

```toml
[dependencies.windows-targets]
version = "0.52.3"
version = "0.52.4"
```

Use the `link`` macro to define the external functions you wish to call:
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/version/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ default-target = "x86_64-pc-windows-msvc"
targets = []

[dependencies.windows-targets]
version = "0.52.3"
version = "0.52.4"
path = "../targets"

[dev-dependencies.windows-bindgen]
Expand Down
2 changes: 1 addition & 1 deletion crates/libs/windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
windows-core = { path = "../core", version = "0.54.0" }
windows-targets = { path = "../targets", version = "0.52.3" }
windows-targets = { path = "../targets", version = "0.52.4" }
windows-implement = { path = "../implement", version = "0.53.0", optional = true }
windows-interface = { path = "../interface", version = "0.53.0", optional = true }

Expand Down

0 comments on commit c560eee

Please sign in to comment.