Several of these badges were out of date, with some crates in wide production use marked as "experimental". Insted of trying to keep them up to date, just remove them, since they are [no longer displayed on crates.io]. [no longer displayed on crates.io]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
24 lines
784 B
TOML
24 lines
784 B
TOML
[package]
|
|
name = "cranelift-object"
|
|
version = "0.96.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"] }
|
|
cranelift-control = { workspace = true }
|
|
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 }
|