Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/native/Cargo.toml
1690 views
1
[package]
2
name = "cranelift-native"
3
version = "0.125.0"
4
authors = ["The Cranelift Project Developers"]
5
description = "Support for targeting the host with Cranelift"
6
documentation = "https://docs.rs/cranelift-native"
7
repository = "https://github.com/bytecodealliance/wasmtime"
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
[dependencies]
15
cranelift-codegen = { workspace = true }
16
target-lexicon = { workspace = true }
17
18
[target.'cfg(target_arch = "riscv64")'.dependencies]
19
libc = { workspace = true }
20
21
[features]
22
default = ["std"]
23
std = ["cranelift-codegen/std"]
24
core = ["cranelift-codegen/core"]
25
26