[package]
name = "monkey-compiler"
version = "2.0.2"
description = "a compiler for monkeylang"
homepage = "https://github.com/gengjiawen/monkey-rust"
repository = "https://github.com/gengjiawen/monkey-rust"
authors = ["gengjiawen <technicalcute@gmail.com>"]
edition = "2018"
license = "MIT"
[lib]
name = "compiler"
path= "lib.rs"
[[bin]]
name = "monkey-compiler"
path = "main.rs"
[dependencies]
lazy_static = "1.5.0"
byteorder = "1.5.0"
strum = { version = "0.25.0", features = ["derive"]}
strum_macros = "0.26"
monkey-parser = { path = "../parser", version = "2.0.0" }
monkey-object = { path = "../object", version = "2.0.0" }
serde = { version = "1.0.219", features = ["derive"] }
[dev-dependencies]
insta = "1.42.2"
[lints]
workspace = true