Skip to content

Commit

Permalink
Update dependencies (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
riverar authored Feb 25, 2024
1 parent 253f811 commit 5820e84
Show file tree
Hide file tree
Showing 7 changed files with 4,931 additions and 5,384 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ Start by adding `windows` and `microsoft-dia` dependencies to Cargo.toml:

```toml
[dependencies.windows]
version = "0.52.0"
version = "0.53.0"
features = [
"Win32_System_Com"
]

[dependencies.microsoft-dia]
version = "0.9.0"
version = "0.10.0"
```

Make use of any DIA SDK APIs as needed.
Expand Down
2 changes: 1 addition & 1 deletion .metadata/generate.proj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.Windows.WinmdGenerator/0.57.42-preview">
<Project Sdk="Microsoft.Windows.WinmdGenerator/0.59.13-preview">
<PropertyGroup Label="Globals">
<OutputWinmd>../.windows/winmd/Microsoft.Dia.winmd</OutputWinmd>
<WinmdVersion>255.255.255.255</WinmdVersion>
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "microsoft-dia"
version = "0.9.0"
version = "0.10.0"
authors = ["Microsoft"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ members = [
]

[dependencies.windows]
version = "0.52"
version = "0.53"
features = [
"implement",
"Win32_Foundation",
Expand All @@ -27,10 +27,10 @@ features = [
]

[dependencies.windows-core]
version = "0.52"
version = "0.53"
features = [
"implement"
]

[build-dependencies.windows-bindgen]
version = "0.52"
version = "0.53"
2 changes: 1 addition & 1 deletion crates/samples/functions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
publish = false

[dependencies.windows]
version = "0.52"
version = "0.53"
features = [
"implement",
"Win32_Foundation",
Expand Down
2 changes: 1 addition & 1 deletion crates/samples/functions/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use windows::{

fn main() -> Result<()> {
unsafe {
CoInitializeEx(None, COINIT_MULTITHREADED)?;
CoInitializeEx(None, COINIT_MULTITHREADED).ok()?;
let source: IDiaDataSource = microsoft_dia::helpers::NoRegCoCreate(
s!(
r#"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\DIA SDK\bin\amd64\msdia140.dll"#
Expand Down
Loading

0 comments on commit 5820e84

Please sign in to comment.