2019-02-09 23:53:40 +00:00
|
|
|
[package]
|
2019-02-28 21:18:00 +00:00
|
|
|
name = "wasmer-llvm-backend"
|
2019-09-12 19:44:38 +00:00
|
|
|
version = "0.7.0"
|
2019-07-30 21:47:53 +00:00
|
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
2019-02-09 23:53:40 +00:00
|
|
|
edition = "2018"
|
2019-07-25 01:06:59 +00:00
|
|
|
readme = "README.md"
|
2019-02-09 23:53:40 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-09-12 19:44:38 +00:00
|
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.7.0" }
|
2019-09-26 04:37:39 +00:00
|
|
|
wasmparser = "0.39.1"
|
2019-09-20 23:08:45 +00:00
|
|
|
smallvec = "0.6"
|
2019-08-01 06:21:56 +00:00
|
|
|
goblin = "0.0.24"
|
2019-08-01 06:03:52 +00:00
|
|
|
libc = "0.2.60"
|
2019-09-20 23:08:45 +00:00
|
|
|
capstone = { version = "0.6", optional = true }
|
2019-07-18 18:02:15 +00:00
|
|
|
byteorder = "1"
|
2019-02-26 02:07:22 +00:00
|
|
|
|
2019-07-30 21:47:53 +00:00
|
|
|
[dependencies.inkwell]
|
|
|
|
git = "https://github.com/wasmerio/inkwell"
|
|
|
|
branch = "llvm8-0"
|
|
|
|
default-features = false
|
|
|
|
features = ["llvm8-0", "target-x86"]
|
|
|
|
|
2019-08-09 02:42:41 +00:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2019-09-20 23:08:45 +00:00
|
|
|
nix = "0.15"
|
2019-08-09 02:42:41 +00:00
|
|
|
|
2019-07-30 21:47:53 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-09-20 23:08:45 +00:00
|
|
|
winapi = { version = "0.3", features = ["memoryapi"] }
|
2019-07-30 21:47:53 +00:00
|
|
|
|
2019-02-26 02:07:22 +00:00
|
|
|
[build-dependencies]
|
|
|
|
cc = "1.0"
|
2019-09-20 23:08:45 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
regex = "1.2"
|
2019-02-26 02:07:22 +00:00
|
|
|
semver = "0.9"
|
2019-09-20 23:08:45 +00:00
|
|
|
rustc_version = "0.2"
|
2019-02-09 23:53:40 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2019-08-12 21:35:32 +00:00
|
|
|
wabt = "0.9.1"
|
2019-02-09 23:53:40 +00:00
|
|
|
|
|
|
|
[features]
|
2019-03-03 22:02:20 +00:00
|
|
|
debug = ["wasmer-runtime-core/debug"]
|
2019-04-12 19:19:46 +00:00
|
|
|
disasm = ["capstone"]
|