mirror of
https://github.com/mii443/wasmer.git
synced 2025-12-12 05:18:43 +00:00
66 lines
2.0 KiB
TOML
66 lines
2.0 KiB
TOML
[package]
|
|
name = "wasmer-compiler"
|
|
version = "3.2.0"
|
|
description = "Base compiler abstraction for Wasmer WebAssembly runtime"
|
|
categories = ["wasm", "no-std"]
|
|
keywords = ["wasm", "webassembly", "compiler"]
|
|
authors = ["Wasmer Engineering Team <engineering@wasmer.io>"]
|
|
repository = "https://github.com/wasmerio/wasmer"
|
|
license = "MIT OR Apache-2.0 WITH LLVM-exception"
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
wasmer-types = { path = "../types", version = "=3.2.0", default-features = false }
|
|
wasmer-object = { path = "../object", version = "=3.2.0", optional = true }
|
|
wasmparser = { version = "0.95", optional = true, default-features = false }
|
|
enumset = "1.0.2"
|
|
hashbrown = { version = "0.11", optional = true }
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|
|
thiserror = "1.0"
|
|
serde_bytes = { version = "0.11", optional = true }
|
|
smallvec = "1.6"
|
|
|
|
backtrace = "0.3"
|
|
rustc-demangle = "0.1"
|
|
memmap2 = "0.5"
|
|
more-asserts = "0.2"
|
|
lazy_static = "1.4"
|
|
|
|
cfg-if = "1.0"
|
|
leb128 = "0.2"
|
|
enum-iterator = "0.7.0"
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
wasmer-vm = { path = "../vm", version = "=3.2.0" }
|
|
region = { version = "3.0" }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = { version = "0.3", features = ["winnt", "impl-default"] }
|
|
|
|
[features]
|
|
default = ["std" ]
|
|
# This feature is for compiler implementors, it enables using `Compiler` and
|
|
# `CompilerConfig`, as well as the included wasmparser.
|
|
# Disable this feature if you just want a headless engine.
|
|
translator = ["wasmparser"]
|
|
compiler = ["translator"]
|
|
wasmer-artifact-load = []
|
|
wasmer-artifact-create = []
|
|
static-artifact-load = []
|
|
static-artifact-create = ["wasmer-object"]
|
|
std = ["wasmer-types/std"]
|
|
core = ["hashbrown", "wasmer-types/core"]
|
|
enable-serde = ["serde", "serde_bytes", "wasmer-types/enable-serde"]
|
|
|
|
[badges]
|
|
maintenance = { status = "experimental" }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = [
|
|
"static-artifact-create",
|
|
"static-artifact-load",
|
|
"wasmer-artifact-create",
|
|
"wasmer-artifact-load",
|
|
]
|