wasmer/lib/llvm-backend/Cargo.toml

41 lines
884 B
TOML
Raw Permalink Normal View History

2019-02-09 15:53:40 -08:00
[package]
name = "wasmer-llvm-backend"
2019-07-31 10:28:45 -07:00
version = "0.6.0"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
2019-02-09 15:53:40 -08:00
edition = "2018"
2019-07-24 18:06:59 -07:00
readme = "README.md"
2019-02-09 15:53:40 -08:00
[dependencies]
2019-07-31 10:28:45 -07:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.6.0" }
wasmparser = "0.35.1"
2019-07-31 23:21:56 -07:00
smallvec = "0.6.10"
goblin = "0.0.24"
2019-07-31 23:03:52 -07:00
libc = "0.2.60"
2019-07-31 23:21:56 -07:00
capstone = { version = "0.6.0", optional = true }
[dependencies.inkwell]
git = "https://github.com/wasmerio/inkwell"
branch = "llvm8-0"
default-features = false
features = ["llvm8-0", "target-x86"]
2019-08-08 19:42:41 -07:00
[target.'cfg(unix)'.dependencies]
nix = "0.14.1"
[target.'cfg(windows)'.dependencies]
2019-07-31 23:21:56 -07:00
winapi = { version = "0.3.7", features = ["memoryapi"] }
[build-dependencies]
cc = "1.0"
2019-07-31 23:21:56 -07:00
lazy_static = "1.3.0"
regex = "1.2.1"
semver = "0.9"
rustc_version = "0.2.3"
2019-02-09 15:53:40 -08:00
[dev-dependencies]
wabt = "0.9.1"
2019-02-09 15:53:40 -08:00
[features]
2019-03-03 16:02:20 -06:00
debug = ["wasmer-runtime-core/debug"]
2019-04-12 12:19:46 -07:00
disasm = ["capstone"]