24 lines
647 B
TOML
24 lines
647 B
TOML
[package]
|
|
name = "wasmtime-jit-icache-coherence"
|
|
version = "3.0.0"
|
|
authors.workspace = true
|
|
description = "Utilities for JIT icache maintenance"
|
|
documentation = "https://docs.rs/jit-icache-coherence"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies.windows-sys]
|
|
workspace = true
|
|
features = [
|
|
"Win32_Foundation",
|
|
"Win32_System_Threading",
|
|
"Win32_System_Diagnostics_Debug",
|
|
]
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies.libc]
|
|
version = "0.2.42"
|