34 lines
1.3 KiB
TOML
34 lines
1.3 KiB
TOML
[package]
|
|
name = "cranelift-wasm"
|
|
version = "0.22.0"
|
|
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"
|
|
categories = ["no-std", "wasm"]
|
|
readme = "README.md"
|
|
keywords = ["webassembly", "wasm"]
|
|
|
|
[dependencies]
|
|
wasmparser = { version = "0.21.4", default-features = false }
|
|
cranelift-codegen = { path = "../codegen", version = "0.22.0", default-features = false }
|
|
cranelift-entity = { path = "../entity", version = "0.22.0", default-features = false }
|
|
cranelift-frontend = { path = "../frontend", version = "0.22.0", 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 }
|
|
log = { version = "0.4.4", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.7.0"
|
|
target-lexicon = "0.2.0"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["cranelift-codegen/std", "cranelift-frontend/std", "wasmparser/std"]
|
|
core = ["hashmap_core", "cranelift-codegen/core", "cranelift-frontend/core", "wasmparser/core"]
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
travis-ci = { repository = "CraneStation/cranelift" }
|