Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/winch/Cargo.toml
1690 views
1
[package]
2
name = "wasmtime-internal-winch"
3
description = "INTERNAL: Integration between Wasmtime and Winch"
4
version.workspace = true
5
authors.workspace = true
6
edition.workspace = true
7
rust-version.workspace = true
8
license = "Apache-2.0 WITH LLVM-exception"
9
repository = "https://github.com/bytecodealliance/wasmtime"
10
11
[lints]
12
workspace = true
13
14
[dependencies]
15
winch-codegen = { workspace = true }
16
target-lexicon = { workspace = true }
17
wasmtime-environ = { workspace = true }
18
anyhow = { workspace = true }
19
object = { workspace = true, features = ['std'] }
20
cranelift-codegen = { workspace = true }
21
wasmtime-cranelift = { workspace = true }
22
wasmparser = { workspace = true }
23
gimli = { workspace = true, features = ['std'] }
24
log = { workspace = true }
25
26
[features]
27
component-model = [
28
"wasmtime-environ/component-model",
29
"wasmtime-cranelift/component-model",
30
]
31
all-arch = ["winch-codegen/all-arch"]
32
gc = ['winch-codegen/gc']
33
gc-drc = ['winch-codegen/gc-drc']
34
gc-null = ['winch-codegen/gc-null']
35
stack-switching = ['winch-codegen/stack-switching']
36
threads = ['winch-codegen/threads']
37
wmemcheck = ['winch-codegen/wmemcheck']
38
39