Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/fiber/Cargo.toml
1690 views
1
[package]
2
name = "wasmtime-internal-fiber"
3
version.workspace = true
4
authors.workspace = true
5
description = "INTERNAL: Fiber support for Wasmtime"
6
license = "Apache-2.0 WITH LLVM-exception"
7
repository = "https://github.com/bytecodealliance/wasmtime"
8
edition.workspace = true
9
rust-version.workspace = true
10
11
[lints]
12
workspace = true
13
14
[dependencies]
15
anyhow = { workspace = true }
16
cfg-if = { workspace = true }
17
wasmtime-versioned-export-macros = { workspace = true }
18
wasmtime-asm-macros = { workspace = true }
19
20
[target.'cfg(unix)'.dependencies]
21
rustix = { workspace = true, features = ["mm"] }
22
libc = { workspace = true }
23
24
[target.'cfg(windows)'.dependencies.windows-sys]
25
workspace = true
26
features = [
27
"Win32_System_Threading",
28
"Win32_Foundation",
29
]
30
31
[build-dependencies]
32
cc = "1.0"
33
wasmtime-versioned-export-macros = { workspace = true }
34
35
[dev-dependencies]
36
backtrace = "0.3.68"
37
38
[features]
39
40
# Assume presence of the standard library. Allows propagating
41
# panic-unwinds across fiber invocations.
42
std = []
43
44