Files
wasmtime/lib/serde/Cargo.toml
Dan Gohman 2c9b7fd73a Add "no-std" category to crates supporting no-std.
And add "wasm" category to cranelift-wasm.
2018-08-22 12:51:54 -07:00

32 lines
863 B
TOML

[package]
name = "cranelift-serde"
version = "0.19.0"
authors = ["The Cranelift Project Developers"]
description = "Serializer/Deserializer for Cranelift IR"
repository = "https://github.com/CraneStation/cranelift"
license = "Apache-2.0 WITH LLVM-exception"
categories = ["no-std"]
readme = "README.md"
keywords = ["webassembly", "serde"]
[[bin]]
name = "clif-json"
path = "src/clif-json.rs"
[dependencies]
clap = "2.32.0"
serde = "1.0.8"
serde_derive = "1.0.8"
serde_json = "1.0"
cranelift-codegen = { path = "../codegen", version = "0.19.0", default-features = false }
cranelift-reader = { path = "../reader", version = "0.19.0", default-features = false }
[features]
default = ["std"]
std = ["cranelift-codegen/std"]
core = ["cranelift-codegen/core"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "CraneStation/cranelift" }