[package] name = "wasmer-engine-jit-near" version = "1.0.1" description = "Wasmer JIT Engine" categories = ["wasm"] keywords = ["wasm", "webassembly", "engine", "jit"] authors = ["Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" license = "MIT OR Apache-2.0 WITH LLVM-exception " readme = "README.md" edition = "2018" [dependencies] wasmer-types = { path = "../wasmer-types", version = "1.0.1", package = "wasmer-types-near" } wasmer-compiler = { path = "../compiler", version = "1.0.1", features = ["translator"], package = "wasmer-compiler-near" } wasmer-vm = { path = "../vm", version = "1.0.1", package = "wasmer-vm-near" } wasmer-engine = { path = "../engine", version = "1.0.1", package = "wasmer-engine-near" } # flexbuffers = { path = "../../../flatbuffers/rust/flexbuffers", version = "0.1.0" } region = "2.2" serde = { version = "1.0", features = ["derive", "rc"] } serde_bytes = { version = "0.11" } bincode = "1.3" cfg-if = "0.1" [target.'cfg(target_os = "windows")'.dependencies] winapi = { version = "0.3", features = ["winnt", "impl-default"] } [features] # Enable the `compiler` feature if you want the engine to compile # and not be only on headless mode. compiler = [] [badges] maintenance = { status = "actively-developed" }