[[bench]]
harness = false
name = "fib"
path = "benches/fib.rs"
[[bench]]
harness = false
name = "functioncall"
path = "benches/functioncall.rs"
[[bench]]
harness = false
name = "loop"
path = "benches/loop.rs"
[dependencies.log]
version = "0.4.27"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.simplelog]
version = "0.12.2"
[[example]]
name = "fib"
path = "examples/fib.rs"
[lib]
name = "bytevm"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["virtualization"]
description = "A tiny bytecode virtual machine"
edition = "2024"
keywords = ["bytecode", "interpreter", "runtime", "vm"]
license = "MIT"
name = "bytevm"
readme = "README.md"
repository = "https://github.com/burdockcascade/bytevm"
version = "0.6.1"
[[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"