evalit 0.2.0-beta.0

a toy interpreter
Documentation
[[bench]]
name = "mod"
path = "benches/mod.rs"

[[bench]]
harness = false
name = "vm_benchmark"
path = "benches/vm_benchmark.rs"

[dependencies.futures]
optional = true
version = "0.3"

[dependencies.log]
version = "0.4"

[dependencies.parking_lot]
optional = true
version = "0.12"

[dependencies.pest]
version = "2"

[dependencies.pest_derive]
version = "2"

[dependencies.petgraph]
version = "0.8"

[dev-dependencies.criterion]
version = "0.6"

[dev-dependencies.env_logger]
version = "0.11"

[dev-dependencies.hyper]
features = ["full"]
version = "1"

[dev-dependencies.hyper-util]
features = ["full"]
version = "0.1"

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

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

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

[features]
async = ["futures", "parking_lot"]
default = ["async"]

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

[package]
authors = ["zzzdong <kuwater@163.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compilers", "parser-implementations"]
description = """
a toy interpreter
"""
documentation = "https://docs.rs/evalit/"
edition = "2024"
homepage = "https://github.com/zzzdong/evalit"
keywords = ["interpreter", "scripting"]
license = "MIT"
name = "evalit"
readme = "README.md"
repository = "https://github.com/zzzdong/evalit"
version = "0.2.0-beta.0"

[[test]]
name = "test_basic_types"
path = "tests/test_basic_types.rs"

[[test]]
name = "test_control_flow"
path = "tests/test_control_flow.rs"

[[test]]
name = "test_embed"
path = "tests/test_embed.rs"

[[test]]
name = "test_function"
path = "tests/test_function.rs"

[[test]]
name = "test_operators"
path = "tests/test_operators.rs"

[[test]]
name = "test_struct"
path = "tests/test_struct.rs"

[[test]]
name = "utils"
path = "tests/utils.rs"