[package]
edition = "2024"
rust-version = "1.87"
name = "spacewasm"
version = "0.3.3"
authors = ["Andrei Tumbar"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A no_std WebAssembly 1.0 decoder, validator, and interpreter for on-board spacecraft use"
readme = "README.md"
keywords = [
"wasm",
"webassembly",
"interpreter",
"no_std",
"embedded",
]
categories = [
"wasm",
"no-std",
"embedded",
]
license = "Apache-2.0"
repository = "https://github.com/nasa/spacewasm"
[features]
default = []
strict-assertions = []
[lib]
name = "spacewasm"
path = "src/lib.rs"
[[test]]
name = "core_integration"
path = "tests/core_integration.rs"
[[test]]
name = "custom_page_sizes_integration"
path = "tests/custom_page_sizes_integration.rs"
[[test]]
name = "decode_errors_integration"
path = "tests/decode_errors_integration.rs"
[[test]]
name = "regression_integration"
path = "tests/regression_integration.rs"
[[test]]
name = "statistics_integration"
path = "tests/statistics_integration.rs"
[dependencies.libm]
version = "0.2.16"
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(kani)"]
[profile.bench]
opt-level = 3
lto = "thin"
codegen-units = 1
[profile.dev]
panic = "abort"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
debug = 2
panic = "abort"
strip = false