evalit 0.1.0

a toy interpreter
Documentation
[dependencies.futures]
optional = true
version = "0.3"

[dependencies.log]
version = "0.4"

[dependencies.pest]
version = "2"

[dependencies.pest_derive]
version = "2"

[dependencies.petgraph]
version = "0.8"

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

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

[dev-dependencies.reqwest]
features = ["rustls-tls"]
version = "0.12"

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

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

[features]
async = ["futures", "tokio"]
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.1.0"

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

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

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