mirror of
https://github.com/extism/extism.git
synced 2026-01-09 13:57:55 -05:00
- Kernel-specific tests - Add bounds checking to the kernel, which can toggled using the `bounds-checking` feature - Next week I will do some benchmarking to determine the runtime performance impact of bounds checking and can consider if it should be relaxed for certain operations (mainly stores/loads) --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: zshipko <zshipko@users.noreply.github.com>
15 lines
187 B
TOML
15 lines
187 B
TOML
[package]
|
|
name = "extism-runtime-kernel"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
|
|
[features]
|
|
default = ["bounds-checking"]
|
|
bounds-checking = []
|
|
|
|
[workspace]
|
|
members = [
|
|
"."
|
|
] |