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
21 lines
573 B
TOML
21 lines
573 B
TOML
[package]
|
|
name = "cranelift-serde"
|
|
version = "0.96.0"
|
|
authors = ["The Cranelift Project Developers"]
|
|
description = "Serializer/Deserializer for Cranelift IR"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
readme = "README.md"
|
|
keywords = ["webassembly", "serde"]
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "clif-json"
|
|
path = "src/clif-json.rs"
|
|
|
|
[dependencies]
|
|
clap = { workspace = true }
|
|
serde_json = "1.0.26"
|
|
cranelift-codegen = { workspace = true, features = ["enable-serde"] }
|
|
cranelift-reader = { workspace = true }
|