2019-02-09 23:53:40 +00:00
|
|
|
[package]
|
2019-02-28 21:18:00 +00:00
|
|
|
name = "wasmer-llvm-backend"
|
2019-02-09 23:53:40 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Lachlan Sneff <lachlan.sneff@gmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-03-04 21:10:28 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.2.1" }
|
2019-02-09 23:53:40 +00:00
|
|
|
wasmparser = "0.28.0"
|
|
|
|
hashbrown = "0.1.8"
|
2019-02-12 03:34:04 +00:00
|
|
|
smallvec = "0.6.8"
|
2019-02-16 00:02:20 +00:00
|
|
|
goblin = "0.0.20"
|
2019-02-28 20:31:39 +00:00
|
|
|
libc = "0.2.49"
|
2019-03-03 01:00:05 +00:00
|
|
|
nix = "0.13.0"
|
2019-03-03 22:02:20 +00:00
|
|
|
capstone = { version = "0.5.0", optional = true }
|
2019-02-26 02:07:22 +00:00
|
|
|
|
2019-03-08 02:06:47 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "llvm5-0" }
|
|
|
|
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
|
|
inkwell = { git = "https://github.com/TheDan64/inkwell", branch = "llvm7-0" }
|
|
|
|
|
2019-02-26 02:07:22 +00:00
|
|
|
[build-dependencies]
|
|
|
|
cc = "1.0"
|
|
|
|
lazy_static = "1.2.0"
|
|
|
|
regex = "1.1.0"
|
|
|
|
semver = "0.9"
|
2019-02-09 23:53:40 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
wabt = "0.7.4"
|
|
|
|
|
|
|
|
[features]
|
2019-03-03 22:02:20 +00:00
|
|
|
debug = ["wasmer-runtime-core/debug"]
|
|
|
|
disasm = ["capstone"]
|