mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 06:15:33 +00:00
32 lines
714 B
TOML
32 lines
714 B
TOML
[package]
|
|
name = "wasmer-llvm-backend"
|
|
version = "0.5.7"
|
|
authors = ["Lachlan Sneff <lachlan.sneff@gmail.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.5.7" }
|
|
inkwell = { git = "https://github.com/wasmerio/inkwell", branch = "llvm8-0", features = ["llvm8-0"] }
|
|
wasmparser = "0.34.0"
|
|
hashbrown = "0.1.8"
|
|
smallvec = "0.6.8"
|
|
goblin = "0.0.20"
|
|
libc = "0.2.49"
|
|
nix = "0.14.0"
|
|
capstone = { version = "0.5.0", optional = true }
|
|
|
|
[build-dependencies]
|
|
cc = "1.0"
|
|
lazy_static = "1.2.0"
|
|
regex = "1.1.0"
|
|
semver = "0.9"
|
|
rustc_version = "0.2.3"
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.9.0"
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime-core/debug"]
|
|
disasm = ["capstone"]
|