rlox/vm/Cargo.toml

18 lines
284 B
TOML
Raw Normal View History

[package]
name = "rlox2-vm"
version = "0.1.0"
edition = "2021"
[dependencies.rlox2-frontend]
path = "../frontend"
[dependencies]
itertools = "0.10.5"
lazy_static = "1.4.0"
num-derive = "0.3.3"
num-traits = "0.2.15"
regex = "1.7.1"
thiserror = "1.0.38"
2023-01-31 22:54:12 +01:00
static_assertions = "1.1.0"