[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"