quickpython 0.1.3

A lightweight Python bytecode VM written in Rust
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 = "quickpython"
version = "0.1.3"
authors = ["VikingMew"]
build = false
exclude = [
    ".github/*",
    "examples/*",
    "quickpython-demo/*",
    "quickpython-llm/*",
    "spec/*",
    "tasks/*",
    "test/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight Python bytecode VM written in Rust"
homepage = "https://github.com/VikingMew/quickpython"
documentation = "https://github.com/VikingMew/quickpython"
readme = "README.md"
keywords = [
    "bytecode",
    "interpreter",
    "python",
    "scripting",
    "vm",
]
categories = [
    "embedded",
    "parser-implementations",
    "virtualization",
]
license = "MPL-2.0"
repository = "https://github.com/VikingMew/quickpython"

[lib]
name = "quickpython"
path = "src/main.rs"

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

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

[dependencies.regex]
version = "1.10"

[dependencies.rustpython-parser]
version = "0.4.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.tokio]
version = "1"
features = ["full"]