[package]
edition = "2021"
name = "cranelift-object"
version = "0.111.13"
authors = ["The Cranelift Project Developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Emit Cranelift output to native object files with `object`"
documentation = "https://docs.rs/cranelift-object"
readme = "README.md"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"
[lib]
name = "cranelift_object"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[dependencies.anyhow]
version = "1.0.22"
default-features = false
[dependencies.cranelift-codegen]
version = "0.111.13"
features = [
"std",
"unwind",
"trace-log",
"std",
]
default-features = false
[dependencies.cranelift-control]
version = "0.111.13"
[dependencies.cranelift-module]
version = "0.111.13"
[dependencies.log]
version = "0.4.8"
default-features = false
[dependencies.object]
version = "0.36"
features = [
"read_core",
"elf",
"write",
"std",
]
default-features = false
[dependencies.target-lexicon]
version = "0.12.16"
[dev-dependencies.cranelift-entity]
version = "0.111.13"
[dev-dependencies.cranelift-frontend]
version = "0.111.13"
[lints.clippy]
clone_on_copy = "warn"
manual_strip = "warn"
map_clone = "warn"
unnecessary_to_owned = "warn"
[lints.clippy.all]
level = "allow"
priority = -1
[lints.rust]
trivial_numeric_casts = "warn"
unstable_features = "warn"
unused-lifetimes = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"