[package]
name = "omg_runtime"
version = "0.1.4"
edition = "2021"
include = [
"src/**",
"bootstrap/interpreter.omg",
"bootstrap/interpreter.omgb",
"README.md",
"LICENSE*",
"Cargo.toml",
]
description = "The OMG language runtime and virtual machine, providing bytecode execution, REPL, and built-in functions."
license = "MIT"
authors = ["Chris Rowles <christopher.rowles@outlook.com>"]
repository = "https://github.com/sentrychris/omglang"
homepage = "https://github.com/sentrychris/omglang"
documentation = "https://docs.rs/omg_runtime"
readme = "README.md"
keywords = ["language", "vm", "bytecode", "interpreter", "educational"]
categories = ["compilers", "development-tools"]
[lib]
name = "omg_runtime"
path = "src/lib.rs"
[[bin]]
name = "omg"
path = "src/main.rs"
[dependencies]
once_cell = "1.19"