scala 0.1.1

A experimental Scala interpreter written in Rust: lexer, parser, type inference, and tree-walking evaluation with a REPL.
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"
rust-version = "1.88"
name = "scala"
version = "0.1.1"
authors = ["Ying Kit WONG"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A experimental Scala interpreter written in Rust: lexer, parser, type inference, and tree-walking evaluation with a REPL."
homepage = "https://github.com/yingkitw/scala-rs"
documentation = "https://docs.rs/scala"
readme = "README.md"
keywords = [
    "scala",
    "interpreter",
    "language",
    "repl",
    "parser",
]
categories = [
    "compilers",
    "parser-implementations",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/scala-rs"

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

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

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

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

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

[dependencies.rustyline]
version = "14"

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