|
@ -12,7 +12,9 @@ edition.workspace = true |
|
|
|
|
|
|
|
|
[dependencies] |
|
|
[dependencies] |
|
|
wasmtime-environ = { workspace = true } |
|
|
wasmtime-environ = { workspace = true } |
|
|
wasmtime-jit-debug = { workspace = true, features = ["perf_jitdump"], optional = true } |
|
|
wasmtime-jit-debug = { workspace = true, features = [ |
|
|
|
|
|
"perf_jitdump", |
|
|
|
|
|
], optional = true } |
|
|
wasmtime-runtime = { workspace = true } |
|
|
wasmtime-runtime = { workspace = true } |
|
|
target-lexicon = { workspace = true } |
|
|
target-lexicon = { workspace = true } |
|
|
anyhow = { workspace = true } |
|
|
anyhow = { workspace = true } |
|
@ -33,12 +35,10 @@ rustix = { workspace = true, features = ['thread'] } |
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys] |
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys] |
|
|
workspace = true |
|
|
workspace = true |
|
|
features = [ |
|
|
features = ["Win32_System_Diagnostics_Debug"] |
|
|
"Win32_System_Diagnostics_Debug", |
|
|
|
|
|
] |
|
|
|
|
|
|
|
|
|
|
|
[target.'cfg(all(target_arch = "x86_64", not(target_os = "android")))'.dependencies] |
|
|
[target.'cfg(all(target_arch = "x86_64", not(target_os = "android")))'.dependencies] |
|
|
ittapi = { version = "0.3.3", optional = true } |
|
|
ittapi = { version = "0.3.4", optional = true } |
|
|
|
|
|
|
|
|
[features] |
|
|
[features] |
|
|
jitdump = ['wasmtime-jit-debug'] |
|
|
jitdump = ['wasmtime-jit-debug'] |
|
|