[package] name = "wasmer-runtime-core" version = "0.18.0" description = "Wasmer runtime core library" license = "MIT" authors = ["The Wasmer Engineering Team "] repository = "https://github.com/wasmerio/wasmer" keywords = ["wasm", "webassembly", "runtime"] categories = ["wasm"] readme = "README.md" edition = "2018" [badges] maintenance = { status = "deprecated" } [dependencies] wasmer-types = { path = "../../wasmer-types", version = "1.0.0-alpha01.0" } wasmer = { path = "../../api", version = "1.0.0-alpha01.0" } wasmer-cache = { path = "../../cache", version = "1.0.0-alpha01.0" } wasmer-compiler = { path = "../../compiler", version = "1.0.0-alpha01.0", features = ["translator"] } wasmer-compiler-llvm = { path = "../../compiler-llvm", version = "1.0.0-alpha01.0", optional = true } wasmer-compiler-cranelift = { path = "../../compiler-cranelift", version = "1.0.0-alpha01.0", optional = true } wasmer-compiler-singlepass = { path = "../../compiler-singlepass", version = "1.0.0-alpha01.0", optional = true } wasmer-engine = { path = "../../engine", version = "1.0.0-alpha01.0" } wasmer-engine-jit = { path = "../../engine-jit", version = "1.0.0-alpha01.0" } wasmer-vm = { path = "../../vm", version = "1.0.0-alpha01.0" } lazy_static = "1.4" [build-dependencies] blake3 = "0.3" [features] default = ["wasmer/default"] cranelift = ["wasmer/cranelift", "wasmer-compiler-cranelift"] llvm = ["wasmer/llvm", "wasmer-compiler-llvm"] singlepass = ["wasmer/singlepass", "wasmer-compiler-singlepass"] default-backend-cranelift = ["cranelift"] default-backend-llvm = ["llvm"] default-backend-singlepass = ["singlepass"] dynamicfunc-fat-closures = []