Files
wasmtime/lib/wasm/Cargo.toml
2018-07-19 11:08:53 -07:00

31 lines
1.2 KiB
TOML

[package]
name = "cranelift-wasm"
version = "0.16.1"
authors = ["The Cranelift Project Developers"]
description = "Translator from WebAssembly to Cranelift IR"
repository = "https://github.com/CraneStation/cranelift"
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
keywords = ["webassembly", "wasm"]
[dependencies]
wasmparser = { version = "0.17.2", default-features = false }
cranelift-codegen = { path = "../codegen", version = "0.16.1", default-features = false }
cranelift-frontend = { path = "../frontend", version = "0.16.1", default-features = false }
hashmap_core = { version = "0.1.9", optional = true }
failure = { version = "0.1.1", default-features = false, features = ["derive"] }
failure_derive = { version = "0.1.1", default-features = false }
target-lexicon = { version = "0.0.3", default-features = false }
[dev-dependencies]
wabt = "0.4"
[features]
default = ["std"]
std = ["cranelift-codegen/std", "cranelift-frontend/std", "wasmparser/std", "target-lexicon/std"]
core = ["hashmap_core", "cranelift-codegen/core", "cranelift-frontend/core", "wasmparser/core"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "CraneStation/cranelift" }