[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"