Renamed jit to Engine-jit

This commit is contained in:
Syrus
2020-05-02 19:24:06 -07:00
parent 4d9a5291aa
commit 143d965ac6
15 changed files with 11 additions and 11 deletions

6
Cargo.lock generated
View File

@@ -1472,7 +1472,7 @@ dependencies = [
"wasmer-compiler-llvm", "wasmer-compiler-llvm",
"wasmer-compiler-singlepass", "wasmer-compiler-singlepass",
"wasmer-engine", "wasmer-engine",
"wasmer-jit", "wasmer-engine-jit",
"wasmer-runtime", "wasmer-runtime",
"wat", "wat",
"winapi", "winapi",
@@ -1496,7 +1496,7 @@ dependencies = [
"wasmer-compiler-llvm", "wasmer-compiler-llvm",
"wasmer-compiler-singlepass", "wasmer-compiler-singlepass",
"wasmer-engine", "wasmer-engine",
"wasmer-jit", "wasmer-engine-jit",
"wasmer-wasi", "wasmer-wasi",
"wasmer-wasi-experimental-io-devices", "wasmer-wasi-experimental-io-devices",
"wasmer-wast", "wasmer-wast",
@@ -1604,7 +1604,7 @@ dependencies = [
] ]
[[package]] [[package]]
name = "wasmer-jit" name = "wasmer-engine-jit"
version = "0.16.2" version = "0.16.2"
dependencies = [ dependencies = [
"backtrace", "backtrace",

View File

@@ -26,7 +26,7 @@ wasmer-compiler-cranelift = { path = "lib/compiler-cranelift", optional = true }
wasmer-compiler-singlepass = { path = "lib/compiler-singlepass", optional = true } wasmer-compiler-singlepass = { path = "lib/compiler-singlepass", optional = true }
wasmer-compiler-llvm = { path = "lib/compiler-llvm", optional = true } wasmer-compiler-llvm = { path = "lib/compiler-llvm", optional = true }
wasmer-engine = { path = "lib/engine" } wasmer-engine = { path = "lib/engine" }
wasmer-jit = { path = "lib/jit" } wasmer-engine-jit = { path = "lib/engine-jit" }
wasmer-wasi = { path = "lib/wasi", optional = true } wasmer-wasi = { path = "lib/wasi", optional = true }
wasmer-wasi-experimental-io-devices = { path = "lib/wasi-experimental-io-devices", optional = true } wasmer-wasi-experimental-io-devices = { path = "lib/wasi-experimental-io-devices", optional = true }
wasmer-wast = { path = "tests/lib/wast", optional = true } wasmer-wast = { path = "tests/lib/wast", optional = true }
@@ -50,7 +50,7 @@ anyhow = "1.0.28"
test-utils = { path = "tests/lib/test-utils" } test-utils = { path = "tests/lib/test-utils" }
wasmer = { path = "lib/api" } wasmer = { path = "lib/api" }
wasmer-compiler = { path = "lib/compiler" } wasmer-compiler = { path = "lib/compiler" }
wasmer-jit = { path = "lib/jit" } wasmer-engine-jit = { path = "lib/engine-jit" }
wasmer-wast = { path = "tests/lib/wast" } wasmer-wast = { path = "tests/lib/wast" }
[features] [features]

View File

@@ -15,7 +15,7 @@ wasmer-compiler-cranelift = { path = "../compiler-cranelift", version = "0.16.2"
wasmer-compiler-llvm = { path = "../compiler-llvm", version = "0.16.2", optional = true } wasmer-compiler-llvm = { path = "../compiler-llvm", version = "0.16.2", optional = true }
wasmer-compiler = { path = "../compiler", version = "0.16.2" } wasmer-compiler = { path = "../compiler", version = "0.16.2" }
wasmer-engine = { path = "../engine", version = "0.16.2" } wasmer-engine = { path = "../engine", version = "0.16.2" }
wasmer-jit = { path = "../jit", version = "0.16.2" } wasmer-engine-jit = { path = "../engine-jit", version = "0.16.2" }
wasm-common = { path = "../wasm-common", version = "0.16.2" } wasm-common = { path = "../wasm-common", version = "0.16.2" }
indexmap = { version = "1.3.2", features = ["serde-1"] } indexmap = { version = "1.3.2", features = ["serde-1"] }
cfg-if = "0.1.10" cfg-if = "0.1.10"

View File

@@ -8,7 +8,7 @@ use crate::{ExternType, FuncType, GlobalType, MemoryType, TableType, ValType};
use std::cmp::max; use std::cmp::max;
use std::slice; use std::slice;
use wasm_common::{Bytes, HostFunction, Pages, ValueType, WasmTypeList, WithEnv, WithoutEnv}; use wasm_common::{Bytes, HostFunction, Pages, ValueType, WasmTypeList, WithEnv, WithoutEnv};
use wasmer_engine::Engine; use wasmer_engine::Engine as _;
use wasmer_runtime::{ use wasmer_runtime::{
wasmer_call_trampoline, Export, ExportFunction, ExportGlobal, ExportMemory, ExportTable, wasmer_call_trampoline, Export, ExportFunction, ExportGlobal, ExportMemory, ExportTable,
LinearMemory, Table as RuntimeTable, VMCallerCheckedAnyfunc, VMContext, VMFunctionBody, LinearMemory, Table as RuntimeTable, VMCallerCheckedAnyfunc, VMContext, VMFunctionBody,

View File

@@ -31,7 +31,7 @@ pub use wasmer_compiler::{CompilerConfig, Features, Target};
pub use wasmer_engine::{ pub use wasmer_engine::{
DeserializeError, Engine, InstantiationError, LinkError, RuntimeError, SerializeError, DeserializeError, Engine, InstantiationError, LinkError, RuntimeError, SerializeError,
}; };
pub use wasmer_jit::JITEngine; pub use wasmer_engine_jit::JITEngine;
#[cfg(feature = "compiler-singlepass")] #[cfg(feature = "compiler-singlepass")]
pub use wasmer_compiler_singlepass::SinglepassConfig; pub use wasmer_compiler_singlepass::SinglepassConfig;

View File

@@ -2,7 +2,7 @@ use crate::tunables::Tunables;
use std::sync::Arc; use std::sync::Arc;
use wasmer_compiler::CompilerConfig; use wasmer_compiler::CompilerConfig;
use wasmer_engine::Engine; use wasmer_engine::Engine;
use wasmer_jit::JITEngine; use wasmer_engine_jit::JITEngine;
#[derive(Clone)] #[derive(Clone)]
pub struct Store { pub struct Store {

View File

@@ -1,8 +1,8 @@
[package] [package]
name = "wasmer-jit" name = "wasmer-engine-jit"
version = "0.16.2" version = "0.16.2"
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"] authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
description = "Wasmer JIT frontend" description = "Wasmer JIT Engine"
license = "(Apache-2.0 WITH LLVM-exception) or MIT" license = "(Apache-2.0 WITH LLVM-exception) or MIT"
categories = ["wasm"] categories = ["wasm"]
keywords = ["webassembly", "wasm"] keywords = ["webassembly", "wasm"]