rlox/interpreter/Cargo.toml

18 lines
353 B
TOML
Raw Normal View History

[package]
name = "rlox2-interpreter"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.rlox2-frontend]
path = "../frontend"
2024-09-01 19:15:55 +02:00
[dev-dependencies]
glob = "0.3"
[dependencies]
2024-09-02 05:19:30 +02:00
itertools = "0.13.0"
rustc-hash = "2.0.0"
smol_str = "0.2.2"
thiserror = "1.0.63"