[package]
edition = "2024"
rust-version = "1.85"
name = "baedeker-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WebAssembly runtime core — decode, validate, execute (no_std)"
homepage = "https://github.com/Industrial-Algebra/Baedeker"
readme = "README.md"
keywords = [
"wasm",
"webassembly",
"runtime",
"interpreter",
"no_std",
]
categories = [
"wasm",
"compilers",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/Industrial-Algebra/Baedeker"
[features]
aot = [
"serde",
"dep:postcard",
]
default = []
serde = ["dep:serde"]
std = []
[lib]
name = "baedeker_core"
path = "src/lib.rs"
[[test]]
name = "aot_roundtrip"
path = "tests/aot_roundtrip.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "runtime_official"
path = "tests/runtime_official.rs"
[[test]]
name = "runtime_wast"
path = "tests/runtime_wast.rs"
[[test]]
name = "spec"
path = "tests/spec.rs"
[[test]]
name = "spec_node"
path = "tests/spec_node.rs"
[[test]]
name = "spec_wast"
path = "tests/spec_wast.rs"
[dependencies.libm]
version = "0.2"
[dependencies.postcard]
version = "1"
features = ["alloc"]
optional = true
default-features = false
[dependencies.serde]
version = "1"
features = [
"derive",
"alloc",
]
optional = true
default-features = false
[dev-dependencies.arbitrary]
version = "1"
[dev-dependencies.wasm-smith]
version = "0.254"
[dev-dependencies.wasmtime]
version = "47"
features = [
"runtime",
"std",
"wat",
"winch",
]
default-features = false
[dev-dependencies.wast]
version = "240"