Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/module/Cargo.toml
1692 views
1
[package]
2
name = "cranelift-module"
3
version = "0.125.0"
4
authors = ["The Cranelift Project Developers"]
5
description = "Support for linking functions and data with Cranelift"
6
repository = "https://github.com/bytecodealliance/wasmtime"
7
documentation = "https://docs.rs/cranelift-module"
8
categories = ["no-std"]
9
license = "Apache-2.0 WITH LLVM-exception"
10
readme = "README.md"
11
edition.workspace = true
12
rust-version.workspace = true
13
14
[lints]
15
workspace = true
16
17
[dependencies]
18
cranelift-codegen = { workspace = true }
19
cranelift-control = { workspace = true }
20
hashbrown = { workspace = true, optional = true }
21
anyhow = { workspace = true, features = ['std'] }
22
serde = { workspace = true, optional = true }
23
serde_derive = { workspace = true, optional = true }
24
25
[features]
26
default = ["std"]
27
std = ["cranelift-codegen/std"]
28
core = ["hashbrown", "cranelift-codegen/core"]
29
30
# For dependent crates that want to serialize some parts of cranelift
31
enable-serde = ["serde", "serde_derive", "cranelift-codegen/enable-serde"]
32
33