[package] name = "oters_lang" version = "0.1.8" edition = "2021" build = "build.rs" authors = ["Pablo Lanza Serrano"] description = "Language definitions and interpreter for the oters programming language" license = "MIT" repository = "https://github.com/PLanza/oters/oters_lang" documentation = "https://planza.github.io/Oters" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] oters_macro = { path = "../oters_macro/", version = "0.1.8" } lalrpop-util = { version = "^0.19", features = ["lexer"] } regex = "1" anyhow = "1.0.68" thiserror = "1.0" lazy_static = "1.4.0" macroquad = "0.3.25" daggy = "0.8.0" chrono = "0.4.23" [build-dependencies] lalrpop = "^0.19" [profile.dev.package.'*'] opt-level = 3