mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
42 lines
900 B
TOML
42 lines
900 B
TOML
[package]
|
|
name = "wasmer-llvm-backend"
|
|
version = "0.6.0"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.6.0" }
|
|
wasmparser = "0.35.1"
|
|
smallvec = "0.6.10"
|
|
goblin = "0.0.24"
|
|
libc = "0.2.60"
|
|
capstone = { version = "0.6.0", optional = true }
|
|
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.14.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3.7", features = ["memoryapi"] }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
lazy_static = "1.3.0"
|
|
regex = "1.2.1"
|
|
semver = "0.9"
|
|
rustc_version = "0.2.3"
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.9.1"
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime-core/debug"]
|
|
disasm = ["capstone"]
|