[package]
name = "wasmer-compiler-llvm"
version = "1.0.0-alpha02.0"
license = "MIT"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
description = "LLVM compiler backend for the Wasmer Wasm runtime"
repository = "https://github.com/wasmerio/wasmer"
keywords = ["webassembly", "wasm", "compiler", "llvm"]
categories = ["wasm"]
readme = "README.md"
edition = "2018"
[dependencies]
wasmer-compiler = { path = "../compiler", version = "1.0.0-alpha02.0", features = ["translator"] }
wasmer-vm = { path = "../vm", version = "1.0.0-alpha02.0" }
wasmer-types = { path = "../wasmer-types", version = "1.0.0-alpha02.0" }
target-lexicon = { version = "0.10", default-features = false }
smallvec = "1"
goblin = "0.2"
libc = { version = "^0.2.69", default-features = false }
byteorder = "1"
itertools = "0.9"
rayon = "1.3"
[dependencies.inkwell]
version = "=0.1.0-llvm10sample"
default-features = false
features = ["llvm10-0", "target-x86", "target-aarch64"]
[build-dependencies]
cc = "1.0"
lazy_static = "1.4"
regex = "1.3"
semver = "0.9"
rustc_version = "0.2"
[features]
test = []