Files

15 lines
443 B
TOML

[package]
name = "leaf_compiler"
version = "0.1.0"
edition = "2024"
[dependencies]
leaf_parser = { path = "../parser" }
leaf_assembly = { path = "../assembly" }
leaf_allocators = { path = "../allocators" }
leaf_backend_llvm = { path = "../backends/llvm" }
arcstr = "1.2.0"
derive_more = { version = "2.0.1", features = ["deref", "deref_mut", "debug", "display", "try_from", "from", "try_into", "into"] }
fxhash = "0.2.1"
itertools = "0.14.0"