mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 14:25:32 +00:00
31a77b0eb7
cargo update to pick up latest inkwell branch commit. Add lifetime annotations to Module which now takes a lifetime, and more lifetime annotations across intrinsics.rs. Add <'ctx> to missing places in CtxType and Intrinsics. Remove it from reference bindings. Use ManuallyDrop to ensure that context's members are dropped before the Context. Co-authored-by: Mark McCaskey <mark@wasmer.io>
45 lines
1007 B
TOML
45 lines
1007 B
TOML
[package]
|
|
name = "wasmer-llvm-backend"
|
|
version = "0.11.0"
|
|
license = "MIT"
|
|
authors = ["The Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
keywords = ["wasm", "webassembly", "compiler", "JIT", "llvm"]
|
|
categories = ["wasm"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
wasmer-runtime-core = { path = "../runtime-core", version = "0.11.0" }
|
|
wasmparser = "0.39.1"
|
|
smallvec = "0.6"
|
|
goblin = "0.0.24"
|
|
libc = "0.2.60"
|
|
byteorder = "1"
|
|
|
|
[dependencies.inkwell]
|
|
git = "https://github.com/TheDan64/inkwell"
|
|
rev = "781620e9fa30e51a6e03bd0d49b5f5bb7a782520"
|
|
default-features = false
|
|
features = ["llvm8-0", "target-x86"]
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.15"
|
|
|
|
[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"
|
|
|
|
[dev-dependencies]
|
|
wabt = "0.9.1"
|
|
|
|
[features]
|
|
debug = ["wasmer-runtime-core/debug"]
|
|
test = []
|