mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
44 lines
967 B
TOML
44 lines
967 B
TOML
[package]
|
|
name = "wasmer-llvm-backend"
|
|
version = "0.10.2"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
keywords = ["wasm", "webassembly", "compiler", "JIT", "llvm"]
|
|
categories = ["wasm"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.10.2" }
|
|
wasmparser = "0.39.1"
|
|
smallvec = "0.6"
|
|
goblin = "0.0.24"
|
|
libc = "0.2.60"
|
|
byteorder = "1"
|
|
|
|
[dependencies.inkwell]
|
|
git = "https://github.com/wasmerio/inkwell"
|
|
branch = "llvm8-0"
|
|
default-features = false
|
|
features = ["llvm8-0", "target-x86"]
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.15"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["memoryapi"] }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
lazy_static = "1.4"
|
|
regex = "1.2"
|
|
semver = "0.9"
|
|
rustc_version = "0.2"
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.9.1"
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime-core/debug"]
|