Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/fiber/Cargo.toml
3068 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
cfg-if = { workspace = true }
16
wasmtime-environ = { workspace = true }
17
wasmtime-versioned-export-macros = { workspace = true }
18
19
[target.'cfg(unix)'.dependencies]
20
rustix = { workspace = true, features = ["mm"] }
21
libc = { workspace = true }
22
23
[target.'cfg(windows)'.dependencies.windows-sys]
24
workspace = true
25
features = [
26
"Win32_System_Threading",
27
"Win32_Foundation",
28
]
29
30
[build-dependencies]
31
cc = "1.0"
32
wasmtime-versioned-export-macros = { workspace = true }
33
34
[dev-dependencies]
35
backtrace = "0.3.68"
36
37
[features]
38
39
# Assume presence of the standard library. Allows propagating
40
# panic-unwinds across fiber invocations.
41
std = []
42
43