virtual-rust 0.1.1

A virtual machine that interprets and runs Rust source code directly without compilation
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 = "2024"
name = "virtual-rust"
version = "0.1.1"
build = false
exclude = [
    "examples/async_project/target/",
    "target/",
    "vscode-virtual-rust/",
    ".vscode/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A virtual machine that interprets and runs Rust source code directly without compilation"
homepage = "https://github.com/quhxuxm/virtual-rust"
readme = "README.md"
keywords = [
    "interpreter",
    "rust",
    "virtual-machine",
    "scripting",
    "repl",
]
categories = [
    "command-line-utilities",
    "development-tools",
    "compilers",
]
license = "MIT"
repository = "https://github.com/quhxuxm/virtual-rust"

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

[[bin]]
name = "virtual-rust"
path = "src/main.rs"

[[example]]
name = "algorithms"
path = "examples/algorithms.rs"

[[example]]
name = "features"
path = "examples/features.rs"

[[example]]
name = "fibonacci"
path = "examples/fibonacci.rs"

[[example]]
name = "hello"
path = "examples/hello.rs"

[[example]]
name = "with_deps"
path = "examples/with_deps.rs"

[[example]]
name = "with_tokio"
path = "examples/with_tokio.rs"

[dependencies.clap]
version = "4"
features = ["derive"]