rlox/vm/Cargo.toml
Moritz Gmeiner fb88595b6c improved REPL a bit
now uses rustyline for input
2024-09-02 03:10:54 +02:00

18 lines
260 B
TOML

[package]
name = "rlox2-vm"
version = "0.1.0"
edition = "2021"
[dependencies.rlox2-frontend]
path = "../frontend"
[dependencies]
itertools = "0.13"
lazy_static = "1"
num-derive = "0.4"
num-traits = "0.2"
regex = "1"
thiserror = "1"
static_assertions = "1"