omg_runtime 0.1.4

The OMG language runtime and virtual machine, providing bytecode execution, REPL, and built-in functions.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "omg_runtime"
version = "0.1.4"
authors = ["Chris Rowles <christopher.rowles@outlook.com>"]
build = false
include = [
    "src/**",
    "bootstrap/interpreter.omg",
    "bootstrap/interpreter.omgb",
    "README.md",
    "LICENSE*",
    "Cargo.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The OMG language runtime and virtual machine, providing bytecode execution, REPL, and built-in functions."
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",
]
license = "MIT"
repository = "https://github.com/sentrychris/omglang"

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

[[bin]]
name = "omg"
path = "src/main.rs"

[dependencies.once_cell]
version = "1.19"