mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-16 17:18:57 +00:00
Renamed jit to Engine-jit
This commit is contained in:
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -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",
|
||||||
|
|||||||
@@ -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]
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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 {
|
||||||
|
|||||||
@@ -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"]
|
||||||
Reference in New Issue
Block a user