bytevm 0.4.0

A simple bytecode virtual machine
Documentation
[[bench]]
harness = false
name = "fib"
path = "benches/fib.rs"

[[bench]]
harness = false
name = "functioncall"
path = "benches/functioncall.rs"

[[bench]]
harness = false
name = "while"
path = "benches/while.rs"

[dependencies.log]
version = "0.4.27"

[dev-dependencies.criterion]
version = "0.5.1"

[dev-dependencies.simplelog]
version = "0.12.2"

[lib]
name = "bytevm"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["virtualization"]
description = "A simple bytecode virtual machine"
edition = "2024"
keywords = ["vm", "bytecode", "interpreter"]
license = "MIT"
name = "bytevm"
readme = "README.md"
repository = "https://github.com/burdockcascade/bytevm"
version = "0.4.0"

[[test]]
name = "arrays"
path = "tests/arrays.rs"

[[test]]
name = "controlflow"
path = "tests/controlflow.rs"

[[test]]
name = "dictionary"
path = "tests/dictionary.rs"

[[test]]
name = "fib"
path = "tests/fib.rs"

[[test]]
name = "functions"
path = "tests/functions.rs"

[[test]]
name = "math"
path = "tests/math.rs"

[[test]]
name = "variables"
path = "tests/variables.rs"