wasmer/lib/llvm-backend/Cargo.toml

50 lines
1.3 KiB
TOML
Raw Normal View History

2019-02-09 15:53:40 -08:00
[package]
name = "wasmer-llvm-backend"
2020-03-11 19:15:31 -07:00
version = "0.16.2"
license = "MIT"
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
repository = "https://github.com/wasmerio/wasmer"
keywords = ["wasm", "webassembly", "compiler", "JIT", "llvm"]
categories = ["wasm"]
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]
2020-03-11 19:15:31 -07:00
wasmer-runtime-core = { path = "../runtime-core", version = "0.16.2", features = ["generate-debug-information-no-export-symbols"] }
wasmparser = "0.51.3"
2020-03-11 12:00:36 -07:00
smallvec = "1"
goblin = "0.1"
2019-07-31 23:03:52 -07:00
libc = "0.2.60"
2019-07-19 02:02:15 +08:00
byteorder = "1"
[target.'cfg(target_arch = "x86_64")'.dependencies.inkwell]
git = "https://github.com/TheDan64/inkwell"
rev = "5610ee7e1fea4f177d1cd70516a988df286975d8"
default-features = false
features = ["llvm8-0", "target-x86"]
[target.'cfg(target_arch = "aarch64")'.dependencies.inkwell]
git = "https://github.com/TheDan64/inkwell"
rev = "5610ee7e1fea4f177d1cd70516a988df286975d8"
default-features = false
features = ["llvm8-0", "target-aarch64"]
2019-08-08 19:42:41 -07:00
[target.'cfg(unix)'.dependencies]
nix = "0.15"
2019-08-08 19:42:41 -07:00
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["memoryapi"] }
[build-dependencies]
cc = "1.0"
lazy_static = "1.4"
regex = "1.2"
semver = "0.9"
rustc_version = "0.2"
2019-02-09 15:53:40 -08:00
[dev-dependencies]
wabt = "0.9.1"
2019-02-09 15:53:40 -08:00
[features]
test = []