Skip to content

Commit 5272e3a

Browse files
authored
Update ittapi crate (bytecodealliance#7092)
This update gets rid of a panic that occurs when using `--profile=vtune` from the command line.
1 parent 4a8eaa7 commit 5272e3a

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

Cargo.lock

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

crates/jit/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ edition.workspace = true
1212

1313
[dependencies]
1414
wasmtime-environ = { workspace = true }
15-
wasmtime-jit-debug = { workspace = true, features = ["perf_jitdump"], optional = true }
15+
wasmtime-jit-debug = { workspace = true, features = [
16+
"perf_jitdump",
17+
], optional = true }
1618
wasmtime-runtime = { workspace = true }
1719
target-lexicon = { workspace = true }
1820
anyhow = { workspace = true }
@@ -33,12 +35,10 @@ rustix = { workspace = true, features = ['thread'] }
3335

3436
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
3537
workspace = true
36-
features = [
37-
"Win32_System_Diagnostics_Debug",
38-
]
38+
features = ["Win32_System_Diagnostics_Debug"]
3939

4040
[target.'cfg(all(target_arch = "x86_64", not(target_os = "android")))'.dependencies]
41-
ittapi = { version = "0.3.3", optional = true }
41+
ittapi = { version = "0.3.4", optional = true }
4242

4343
[features]
4444
jitdump = ['wasmtime-jit-debug']

supply-chain/audits.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1438,12 +1438,22 @@ criteria = "safe-to-deploy"
14381438
delta = "0.4.1 -> 0.4.3"
14391439
notes = "The Bytecode Alliance is the author of this crate."
14401440

1441+
[[audits.ittapi]]
1442+
who = "Andrew Brown <[email protected]>"
1443+
criteria = "safe-to-deploy"
1444+
version = "0.3.4"
1445+
14411446
[[audits.ittapi]]
14421447
who = "Andrew Brown <[email protected]>"
14431448
criteria = "safe-to-deploy"
14441449
delta = "0.3.1 -> 0.3.3"
14451450
notes = "I am the author of this crate."
14461451

1452+
[[audits.ittapi-sys]]
1453+
who = "Andrew Brown <[email protected]>"
1454+
criteria = "safe-to-deploy"
1455+
version = "0.3.4"
1456+
14471457
[[audits.ittapi-sys]]
14481458
who = "Andrew Brown <[email protected]>"
14491459
criteria = "safe-to-deploy"

0 commit comments

Comments
 (0)