Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/cranelift/object/Cargo.toml
1692 views
1
[package]
2
name = "cranelift-object"
3
version = "0.125.0"
4
authors = ["The Cranelift Project Developers"]
5
description = "Emit Cranelift output to native object files with `object`"
6
repository = "https://github.com/bytecodealliance/wasmtime"
7
documentation = "https://docs.rs/cranelift-object"
8
license = "Apache-2.0 WITH LLVM-exception"
9
readme = "README.md"
10
edition.workspace = true
11
rust-version.workspace = true
12
13
[lints]
14
workspace = true
15
16
[dependencies]
17
cranelift-module = { workspace = true }
18
cranelift-codegen = { workspace = true, features = ["std"] }
19
cranelift-control = { workspace = true }
20
object = { workspace = true, features = ["write", "std"] }
21
target-lexicon = { workspace = true }
22
anyhow = { workspace = true }
23
log = { workspace = true }
24
25
[dev-dependencies]
26
cranelift-frontend = { workspace = true }
27
cranelift-entity = { workspace = true }
28
cranelift-codegen = { workspace = true, features = ["x86"] }
29
30