Files
wasmtime/cranelift/object/Cargo.toml
Alex Crichton 7f2c8e6344 Fix some warnings on nightly Rust (#5668)
* Fix some warnings on nightly Rust

Cargo is warning about the usage of workspace dependencies where the
workspace declaration does not mention `default-features` but the
dependency mentions `default-features`, so this explicitly turns off
default features for `cranelift-codegen` at the workspace level and
removes the explicit `default-features = false` at the manifest levels.

* Explicitly enable default feature in wasmtime

* Enable another feature
2023-01-31 20:54:58 +00:00

26 lines
795 B
TOML

[package]
name = "cranelift-object"
version = "0.93.0"
authors = ["The Cranelift Project Developers"]
description = "Emit Cranelift output to native object files with `object`"
repository = "https://github.com/bytecodealliance/wasmtime"
documentation = "https://docs.rs/cranelift-object"
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
edition.workspace = true
[dependencies]
cranelift-module = { workspace = true }
cranelift-codegen = { workspace = true, features = ["std"] }
object = { workspace = true, features = ["write"] }
target-lexicon = { workspace = true }
anyhow = { workspace = true }
log = { workspace = true }
[dev-dependencies]
cranelift-frontend = { workspace = true }
cranelift-entity = { workspace = true }
[badges]
maintenance = { status = "experimental" }