Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/umbrella/Cargo.toml
1690 views
1
[package]
2
authors = ["The Cranelift Project Developers"]
3
name = "cranelift"
4
version = "0.125.0"
5
description = "Umbrella for commonly-used cranelift crates"
6
license = "Apache-2.0 WITH LLVM-exception"
7
documentation = "https://docs.rs/cranelift"
8
repository = "https://github.com/bytecodealliance/wasmtime"
9
categories = ["no-std"]
10
readme = "README.md"
11
keywords = ["compile", "compiler", "jit"]
12
edition.workspace = true
13
rust-version.workspace = true
14
15
[dependencies]
16
cranelift-codegen = { workspace = true }
17
cranelift-frontend = { workspace = true, optional = true }
18
cranelift-interpreter = { workspace = true, optional = true }
19
cranelift-jit = { workspace = true, optional = true }
20
cranelift-module = { workspace = true, optional = true }
21
cranelift-native = { workspace = true, optional = true }
22
cranelift-object = { workspace = true, optional = true }
23
24
[features]
25
default = ["std", "frontend"]
26
frontend = ["dep:cranelift-frontend"]
27
interpreter = ["dep:cranelift-interpreter"]
28
jit = ["dep:cranelift-jit"]
29
module = ["dep:cranelift-module"]
30
native = ["dep:cranelift-native"]
31
object = ["dep:cranelift-object"]
32
std = [
33
"cranelift-codegen/std",
34
"cranelift-frontend?/std",
35
"cranelift-module?/std",
36
]
37
core = [
38
"cranelift-codegen/core",
39
"cranelift-frontend?/core",
40
"cranelift-module?/core",
41
]
42
43